mirror of https://github.com/Cisco-Talos/clamav
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.
20 lines
417 B
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
|
|
|