ClamAV is an open source (GPLv2) anti-virus toolkit.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
clamav/libclamav_rust/CMakeLists.txt

13 lines
388 B

#
# libclamav features written in Rust
#
# Copyright (C) 2021-2022 Cisco Systems, Inc. and/or its affiliates. All rights reserved
#
# libclamav rust static library
add_rust_library(TARGET clamav_rust WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}")
if (WIN32)
target_link_libraries(clamav_rust PUBLIC INTERFACE Userenv)
endif()
add_library(ClamAV::libclamav_rust ALIAS clamav_rust)