85 lines
2.0 KiB
CMake
85 lines
2.0 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 "common" static library.
|
|
add_library( common STATIC )
|
|
target_sources( common
|
|
PRIVATE
|
|
cert_util.c
|
|
actions.c
|
|
clamdcom.c
|
|
getopt.c
|
|
hostid.c
|
|
idmef_logging.c
|
|
misc.c
|
|
optparser.c
|
|
output.c
|
|
tar.c
|
|
PUBLIC
|
|
cert_util.h
|
|
actions.h
|
|
clamdcom.h
|
|
fdpassing.h
|
|
getopt.h
|
|
hostid.h
|
|
idmef_logging.h
|
|
misc.h
|
|
optparser.h
|
|
output.h
|
|
tar.h )
|
|
|
|
target_include_directories( common
|
|
PRIVATE ${CMAKE_BINARY_DIR}
|
|
PUBLIC ${CMAKE_CURRENT_SOURCE_DIR} )
|
|
if(FOUND_SYSTEMD)
|
|
target_include_directories( common
|
|
PRIVATE ${SYSTEMD_INCLUDE_DIRS} )
|
|
endif()
|
|
|
|
if(APPLE)
|
|
target_sources( common PRIVATE mac/cert_util_mac.m )
|
|
elseif(WIN32)
|
|
target_sources( common
|
|
PRIVATE service.c scanmem.c exescanner.c
|
|
PUBLIC service.h scanmem.h exescanner.h )
|
|
target_sources( common PRIVATE win/cert_util_win.c )
|
|
else()
|
|
target_sources( common PRIVATE linux/cert_util_linux.c )
|
|
endif()
|
|
|
|
target_link_libraries( common
|
|
PUBLIC
|
|
ClamAV::libclamav
|
|
ZLIB::ZLIB
|
|
CURL::libcurl
|
|
OpenSSL::SSL
|
|
OpenSSL::Crypto )
|
|
if(WIN32)
|
|
target_link_libraries( common
|
|
PUBLIC
|
|
crypt32
|
|
psapi)
|
|
endif()
|
|
|
|
if(HAVE_SYSTEMD)
|
|
target_link_libraries( common
|
|
PRIVATE
|
|
SYSTEMD::systemd )
|
|
endif()
|
|
|
|
set_target_properties( common PROPERTIES COMPILE_FLAGS "${WARNCFLAGS}" )
|
|
if(WIN32)
|
|
set_target_properties(common PROPERTIES WINDOWS_EXPORT_ALL_SYMBOLS ON)
|
|
endif()
|
|
|
|
add_library( ClamAV::common ALIAS common )
|