aa9b03df25
Combine current configuration flags with CMAKE_C_FLAGS
12 lines
378 B
C
12 lines
378 B
C
#ifndef WINPR_BUILD_FLAGS_H
|
|
#define WINPR_BUILD_FLAGS_H
|
|
|
|
#define WINPR_CFLAGS "${C_FLAGS}"
|
|
#define WINPR_COMPILER_ID "${CMAKE_C_COMPILER_ID}"
|
|
#define WINPR_COMPILER_VERSION "${CMAKE_C_COMPILER_VERSION}"
|
|
#define WINPR_TARGET_ARCH "${TARGET_ARCH}"
|
|
#define WINPR_BUILD_CONFIG "${WINPR_BUILD_CONFIG}"
|
|
#define WINPR_BUILD_TYPE "${CMAKE_BUILD_TYPE}"
|
|
|
|
#endif /* WINPR_BUILD_FLAGS_H */
|