2021-04-21 16:24:24 -07:00
|
|
|
#
|
|
|
|
|
# libclamav features written in Rust
|
|
|
|
|
#
|
2022-01-06 16:53:44 -08:00
|
|
|
# Copyright (C) 2021-2022 Cisco Systems, Inc. and/or its affiliates. All rights reserved
|
2021-10-18 14:56:09 -04:00
|
|
|
#
|
2021-04-21 16:24:24 -07:00
|
|
|
|
|
|
|
|
# libclamav rust static library
|
|
|
|
|
add_rust_library(TARGET clamav_rust WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}")
|
2021-08-23 13:38:26 -04:00
|
|
|
if (WIN32)
|
2021-10-18 14:56:09 -04:00
|
|
|
target_link_libraries(clamav_rust PUBLIC INTERFACE Userenv)
|
2021-08-23 13:38:26 -04:00
|
|
|
endif()
|
2021-11-17 14:45:25 -08:00
|
|
|
|
2021-04-21 16:24:24 -07:00
|
|
|
add_library(ClamAV::libclamav_rust ALIAS clamav_rust)
|