mirror of
https://github.com/morgan9e/FreeRDP
synced 2026-04-14 00:14:11 +09:00
Since we do not know wich configuration will be build with multiconfiguration generators print out all C_FLAGS_XXX and CXX_FLAGS_XXX variables
12 lines
380 B
C
12 lines
380 B
C
#ifndef UWAC_BUILD_FLAGS_H
|
|
#define UWAC_BUILD_FLAGS_H
|
|
|
|
#define UWAC_CFLAGS "${CURRENT_C_FLAGS}"
|
|
#define UWAC_COMPILER_ID "${CMAKE_C_COMPILER_ID}"
|
|
#define UWAC_COMPILER_VERSION "${CMAKE_C_COMPILER_VERSION}"
|
|
#define UWAC_TARGET_ARCH "${TARGET_ARCH}"
|
|
#define UWAC_BUILD_CONFIG "${UWAC_BUILD_CONFIG}"
|
|
#define UWAC_BUILD_TYPE "${CURRENT_BUILD_CONFIG}"
|
|
|
|
#endif /* UWAC_BUILD_FLAGS_H */
|