mirror of
https://github.com/morgan9e/FreeRDP
synced 2026-04-14 16:34:18 +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
386 B
C
12 lines
386 B
C
#ifndef RDTK_BUILD_FLAGS_H
|
|
#define RDTK_BUILD_FLAGS_H
|
|
|
|
#define RDTK_CFLAGS "${CMAKE_CURRENT_C_FLAGS}"
|
|
#define RDTK_COMPILER_ID "${CMAKE_C_COMPILER_ID}"
|
|
#define RDTK_COMPILER_VERSION "${CMAKE_C_COMPILER_VERSION}"
|
|
#define RDTK_TARGET_ARCH "${TARGET_ARCH}"
|
|
#define RDTK_BUILD_CONFIG "${RDTK_BUILD_CONFIG}"
|
|
#define RDTK_BUILD_TYPE "${CURRENT_BUILD_CONFIG}"
|
|
|
|
#endif /* RDTK_BUILD_FLAGS_H */
|