Bruce-C.cmake 345 B

1234567
  1. # Bruce C Compiler ignores "-g" flag and optimization cannot be
  2. # enabled here (it is implemented only for 8086 target).
  3. set (CMAKE_C_FLAGS_INIT "-D__CLASSIC_C__")
  4. set (CMAKE_C_FLAGS_DEBUG_INIT "-g")
  5. set (CMAKE_C_FLAGS_MINSIZEREL_INIT "-DNDEBUG")
  6. set (CMAKE_C_FLAGS_RELEASE_INIT "-DNDEBUG")
  7. set (CMAKE_C_FLAGS_RELWITHDEBINFO_INIT "-g -DNDEBUG")