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/clamdscan/CMakeLists.txt

37 lines
1.0 KiB

# Copyright (C) 2020 Cisco Systems, Inc. and/or its affiliates. All rights reserved.
cmake_minimum_required( VERSION 3.12...3.13 )
if(WIN32)
add_definitions(-DWIN32_LEAN_AND_MEAN)
add_definitions(-DHAVE_STRUCT_TIMESPEC)
# Windows compatibility headers
include_directories(${CMAKE_SOURCE_DIR}/win32/compat)
endif()
# The clamdscan executable.
add_executable( clamdscan )
target_sources( clamdscan
PRIVATE
clamdscan.c
client.c
client.h
proto.c
proto.h )
if(WIN32)
target_sources( clamdscan PRIVATE ${CMAKE_SOURCE_DIR}/win32/res/clamdscan.rc )
endif()
target_include_directories( clamdscan
PRIVATE ${CMAKE_BINARY_DIR} # For clamav-config.h
)
set_target_properties( clamdscan PROPERTIES COMPILE_FLAGS "${WARNCFLAGS}" )
target_link_libraries( clamdscan
PRIVATE
ClamAV::libclamav
ClamAV::shared )
if(WIN32)
install(TARGETS clamdscan DESTINATION ${CMAKE_INSTALL_PREFIX})
else()
install(TARGETS clamdscan DESTINATION ${CMAKE_INSTALL_BINDIR})
endif()