mirror of
https://github.com/Cisco-Talos/clamav.git
synced 2025-10-19 10:23:17 +00:00
21 lines
417 B
CMake
21 lines
417 B
CMake
![]() |
/*
|
||
|
* 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
|