File: target.h.cmake.in

package info (click to toggle)
clamav 1.4.3%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 209,592 kB
  • sloc: ansic: 166,999; python: 3,776; cpp: 2,943; sh: 2,579; yacc: 1,357; lex: 716; makefile: 103; perl: 17
file content (20 lines) | stat: -rw-r--r-- 417 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
 * 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