diff --git a/CMakeLists.txt b/CMakeLists.txt index d78e9b1..c22b73d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -138,7 +138,7 @@ if(COS_INSTALLER_BUILD_TESTS) add_subdirectory(tests) endif() -target_link_libraries(${PROJECT_NAME} PRIVATE project_warnings project_options spdlog::spdlog fmt::fmt ftxui::screen ftxui::dom ftxui::component range-v3::range-v3 ctre::ctre tomlplusplus::tomlplusplus gucc::gucc) +target_link_libraries(${PROJECT_NAME} PRIVATE project_warnings project_options spdlog::spdlog fmt::fmt ftxui::screen ftxui::dom ftxui::component ctre::ctre tomlplusplus::tomlplusplus gucc::gucc) if(NOT ENABLE_DEVENV) target_link_libraries(${PROJECT_NAME} PRIVATE cpr::cpr) endif() diff --git a/meson.build b/meson.build index 2666da9..c8a837b 100644 --- a/meson.build +++ b/meson.build @@ -62,7 +62,6 @@ spdlog = dependency('spdlog', version : ['>=1.12.0'], fallback : ['spdlog', 'spd fmt = dependency('fmt', version : ['>=10.1.0'], fallback : ['fmt', 'fmt_dep']) ftxui = dependency('ftxui', modules : ['ftxui::screen', 'ftxui::dom', 'ftxui::component'], fallback : ['ftxui', 'ftxui_dep']) rapidjson = dependency('rapidjson', version : ['>=1.1.0'], fallback : ['rapidjson', 'rapidjson_dep']) -ranges = dependency('range-v3', version : ['>=0.11.0'], fallback : ['range-v3', 'range_dep']) ctre = dependency('ctre', version : ['>=3.8.0'], fallback : ['ctre', 'ctre_dep']) tomlplusplus = dependency('tomlplusplus', version : ['>=3.4.0'], fallback : ['tomlplusplus', 'tomlplusplus_dep'], default_options: ['compile_library=false']) #glibmm = dependency('glibmm-2.4', version : ['>=2.56.0']) @@ -162,7 +161,7 @@ endif add_project_arguments(cc.get_supported_arguments(possible_cc_flags), language : 'cpp') -deps = [fmt, spdlog, ftxui, ranges, rapidjson, ctre, tomlplusplus, cpr] +deps = [fmt, spdlog, ftxui, rapidjson, ctre, tomlplusplus, cpr] subdir('gucc')