solanaceae_clamav/plugins/CMakeLists.txt

16 lines
361 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)
2024-10-06 12:26:13 +02:00
set_target_properties(plugin_clamav PROPERTIES
C_VISIBILITY_PRESET hidden
POSITION_INDEPENDENT_CODE ON
)
2023-10-25 17:51:48 +02:00
target_link_libraries(plugin_clamav PUBLIC
solanaceae_clamav
solanaceae_plugin
)