solanaceae_clamav/plugins/CMakeLists.txt

12 lines
254 B
CMake
Raw Normal View History

2023-10-25 17:51:48 +02:00
cmake_minimum_required(VERSION 3.24 FATAL_ERROR)
add_library(plugin_clamav SHARED
./plugin_clamav_module.cpp
)
target_compile_features(plugin_clamav PUBLIC cxx_std_17)
target_link_libraries(plugin_clamav PUBLIC
solanaceae_clamav
solanaceae_plugin
)