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/target.h.cmake.in

20 lines
417 B

/*
* cmake-target.h.in.
*
* Autoconf compatibility layer for CMake.
*
* This header provides macros used by ClamAV that autoconf would've provided
* with AC_CREATE_TARGET_H
*/
#ifndef TARGET_OS_TYPE
#define TARGET_OS_TYPE "@CMAKE_SYSTEM_NAME@"
#endif
#ifndef TARGET_ARCH_TYPE
#define TARGET_ARCH_TYPE "@CMAKE_SYSTEM_PROCESSOR@"
#endif
#ifndef TARGET_CPU_TYPE
#define TARGET_CPU_TYPE TARGET_ARCH_TYPE
#endif