cmake/Modules/Compiler/XL-C.cmake

9 lines
382 B
CMake
Raw Normal View History

2011-06-19 15:41:06 +03:00
include(Compiler/XL)
__compiler_xl(C)
set(CMAKE_C_FLAGS_RELEASE_INIT "${CMAKE_C_FLAGS_RELEASE_INIT} -DNDEBUG")
set(CMAKE_C_FLAGS_MINSIZEREL_INIT "${CMAKE_C_FLAGS_MINSIZEREL_INIT} -DNDEBUG")
2009-10-04 10:30:41 +03:00
# -qthreaded = Ensures that all optimizations will be thread-safe
# -qhalt=e = Halt on error messages (rather than just severe errors)
2015-11-17 17:22:37 +01:00
set(CMAKE_C_FLAGS_INIT "-qthreaded -qhalt=e")