clamav/libclamav_rust/CMakeLists.txt

11 lines
286 B
Text
Raw Normal View History

2021-04-21 16:24:24 -07:00
#
# libclamav features written in Rust
#
# libclamav rust static library
add_rust_library(TARGET clamav_rust WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}")
if (WIN32)
target_link_libraries(clamav_rust PUBLIC Userenv)
endif()
2021-04-21 16:24:24 -07:00
add_library(ClamAV::libclamav_rust ALIAS clamav_rust)