mirror of
https://github.com/FreeRDP/FreeRDP.git
synced 2024-11-30 05:17:23 +08:00
aa9b03df25
Combine current configuration flags with CMAKE_C_FLAGS
12 lines
398 B
C
12 lines
398 B
C
#ifndef FREERDP_BUILD_FLAGS_H
|
|
#define FREERDP_BUILD_FLAGS_H
|
|
|
|
#define FREERDP_CFLAGS "${C_FLAGS}"
|
|
#define FREERDP_COMPILER_ID "${CMAKE_C_COMPILER_ID}"
|
|
#define FREERDP_COMPILER_VERSION "${CMAKE_C_COMPILER_VERSION}"
|
|
#define FREERDP_TARGET_ARCH "${TARGET_ARCH}"
|
|
#define FREERDP_BUILD_CONFIG "${FREERDP_BUILD_CONFIG}"
|
|
#define FREERDP_BUILD_TYPE "${CMAKE_BUILD_TYPE}"
|
|
|
|
#endif /* FREERDP_BUILD_FLAGS_H */
|