🚧 fix compilation

This commit is contained in:
Vladislav Nepogodin 2022-11-20 04:33:14 +04:00
parent f80010bcb0
commit b4b232905b
No known key found for this signature in database
GPG Key ID: B62C3D10C54D5DA9

View File

@ -32,5 +32,8 @@ foreach(file ${files})
$<$<CXX_COMPILER_ID:GNU>:-Wno-deprecated-declarations>
)
target_include_directories(${testcase} PRIVATE ${CMAKE_BINARY_DIR}/include ${CMAKE_SOURCE_DIR}/include ${CMAKE_CURRENT_DIR})
target_link_libraries(${testcase} PRIVATE project_warnings project_options test_libreq spdlog::spdlog fmt::fmt ftxui::component cpr::cpr range-v3::range-v3 ctre::ctre)
target_link_libraries(${testcase} PRIVATE project_warnings project_options test_libreq spdlog::spdlog fmt::fmt ftxui::component range-v3::range-v3 ctre::ctre)
if(NOT ENABLE_DEVENV)
target_link_libraries(${testcase} PRIVATE cpr::cpr)
endif()
endforeach()