49 lines
1.4 KiB
CMake
49 lines
1.4 KiB
CMake
|
# Copyright (C) 2020-2022 Cisco Systems, Inc. and/or its affiliates. All rights reserved.
|
||
|
|
||
|
if(WIN32)
|
||
|
add_definitions(-DWIN32_LEAN_AND_MEAN)
|
||
|
add_definitions(-D_CRT_SECURE_NO_WARNINGS)
|
||
|
add_definitions(-D_CRT_SECURE_NO_DEPRECATE)
|
||
|
add_definitions(-D_CRT_NONSTDC_NO_DEPRECATE)
|
||
|
|
||
|
# Windows compatibility headers
|
||
|
include_directories(${CMAKE_SOURCE_DIR}/win32/compat)
|
||
|
endif()
|
||
|
|
||
|
# The clamscan executable.
|
||
|
add_executable( clamscan )
|
||
|
target_sources( clamscan
|
||
|
PRIVATE
|
||
|
clamscan.c
|
||
|
manager.c
|
||
|
manager.h
|
||
|
global.h )
|
||
|
if(WIN32)
|
||
|
target_sources( clamscan
|
||
|
PRIVATE
|
||
|
${CMAKE_SOURCE_DIR}/win32/res/clamscan.rc
|
||
|
${CMAKE_SOURCE_DIR}/win32/res/clam.manifest )
|
||
|
endif()
|
||
|
target_include_directories( clamscan
|
||
|
PRIVATE ${CMAKE_BINARY_DIR} # For clamav-config.h
|
||
|
)
|
||
|
set_target_properties( clamscan PROPERTIES COMPILE_FLAGS "${WARNCFLAGS}" )
|
||
|
|
||
|
if (APPLE AND CLAMAV_SIGN_FILE)
|
||
|
set_target_properties( clamscan PROPERTIES
|
||
|
XCODE_ATTRIBUTE_CODE_SIGN_IDENTITY ${CODE_SIGN_IDENTITY}
|
||
|
XCODE_ATTRIBUTE_DEVELOPMENT_TEAM ${DEVELOPMENT_TEAM_ID}
|
||
|
)
|
||
|
endif()
|
||
|
|
||
|
target_link_libraries( clamscan
|
||
|
PRIVATE
|
||
|
ClamAV::libclamav
|
||
|
ClamAV::common )
|
||
|
if(WIN32)
|
||
|
install(TARGETS clamscan DESTINATION . COMPONENT programs)
|
||
|
install(FILES $<TARGET_PDB_FILE:clamscan> DESTINATION . OPTIONAL COMPONENT programs)
|
||
|
else()
|
||
|
install(TARGETS clamscan DESTINATION ${CMAKE_INSTALL_BINDIR} COMPONENT programs)
|
||
|
endif()
|