fix windows stuff + make glaze actually a subproject
This commit is contained in:
parent
4d16e66000
commit
c2536c361e
3 changed files with 20 additions and 3 deletions
3
.gitmodules
vendored
Normal file
3
.gitmodules
vendored
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
[submodule "subprojects/glaze"]
|
||||||
|
path = subprojects/glaze
|
||||||
|
url = https://github.com/stephenberry/glaze
|
19
meson.build
19
meson.build
|
@ -9,6 +9,7 @@ project(
|
||||||
'default_library=static',
|
'default_library=static',
|
||||||
'warning_level=everything',
|
'warning_level=everything',
|
||||||
'buildtype=debugoptimized',
|
'buildtype=debugoptimized',
|
||||||
|
'b_vscrt=mt',
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -38,7 +39,10 @@ common_cpp_flags = {
|
||||||
'-std=c++26',
|
'-std=c++26',
|
||||||
],
|
],
|
||||||
'msvc': [
|
'msvc': [
|
||||||
'-DNOMINMAX', '/Zc:__cplusplus',
|
'-DNOMINMAX',
|
||||||
|
'/MT',
|
||||||
|
'/Zc:__cplusplus',
|
||||||
|
'/Zc:preprocessor',
|
||||||
'/std:c++latest',
|
'/std:c++latest',
|
||||||
],
|
],
|
||||||
'unix_extra': [
|
'unix_extra': [
|
||||||
|
@ -98,7 +102,6 @@ common_deps = [
|
||||||
dependency('fmt', include_type: 'system', static: true),
|
dependency('fmt', include_type: 'system', static: true),
|
||||||
dependency('libcurl', include_type: 'system', static: true),
|
dependency('libcurl', include_type: 'system', static: true),
|
||||||
dependency('tomlplusplus', include_type: 'system', static: true),
|
dependency('tomlplusplus', include_type: 'system', static: true),
|
||||||
dependency('glaze', include_type: 'system'),
|
|
||||||
dependency('openssl', include_type: 'system', static: true, required: false),
|
dependency('openssl', include_type: 'system', static: true, required: false),
|
||||||
]
|
]
|
||||||
|
|
||||||
|
@ -151,8 +154,18 @@ if not ftxui_dep.found()
|
||||||
)
|
)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
glaze_dep = dependency('glaze', include_type: 'system', required: false)
|
||||||
|
|
||||||
|
if not glaze_dep.found()
|
||||||
|
cmake = import('cmake')
|
||||||
|
|
||||||
|
glaze_proj = cmake.subproject('glaze')
|
||||||
|
|
||||||
|
glaze_dep = glaze_proj.dependency('glaze_glaze', include_type: 'system')
|
||||||
|
endif
|
||||||
|
|
||||||
# Combine all dependencies
|
# Combine all dependencies
|
||||||
deps = common_deps + platform_deps + ftxui_dep
|
deps = common_deps + platform_deps + ftxui_dep + glaze_dep
|
||||||
|
|
||||||
# ------------------------- #
|
# ------------------------- #
|
||||||
# Link/ObjC Configuration #
|
# Link/ObjC Configuration #
|
||||||
|
|
1
subprojects/glaze
Submodule
1
subprojects/glaze
Submodule
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit cfa3c5838cc04e2f179faddf8e4757f90fa5fbe7
|
Loading…
Add table
Reference in a new issue