solanaceae_clamav/src/CMakeLists.txt

23 lines
613 B
CMake
Raw Normal View History

2023-10-24 01:22:09 +02:00
cmake_minimum_required(VERSION 3.24 FATAL_ERROR)
2023-10-21 23:16:20 +02:00
add_library(solanaceae_clamav
./solanaceae/clamav/test_lib.cpp
)
target_include_directories(solanaceae_clamav PUBLIC .)
target_compile_features(solanaceae_clamav PUBLIC cxx_std_17)
target_link_libraries(solanaceae_clamav PUBLIC
2023-10-24 01:22:09 +02:00
EXT_SOL::libclamav
#solanaceae_util
)
add_executable(solanaceae_clamav_test
./solanaceae/clamav/test_exe.cpp
)
target_include_directories(solanaceae_clamav_test PUBLIC .)
target_compile_features(solanaceae_clamav_test PUBLIC cxx_std_17)
target_link_libraries(solanaceae_clamav_test PUBLIC
EXT_SOL::libclamav
2023-10-21 23:16:20 +02:00
#solanaceae_util
)