Changeset 343:4a5211430f63 in freeDiameter
- Timestamp:
- Jun 29, 2010, 1:41:09 PM (13 years ago)
- Branch:
- default
- Phase:
- public
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
CMakeLists.txt
r341 r343 36 36 # All source code should be POSIX 200112L compatible, but some other extensions might be used, so: 37 37 ADD_DEFINITIONS(-D_GNU_SOURCE) 38 IF (CMAKE_BUILD_TYPE MATCHES "Debug") 38 39 # Add a "Profiling" build type 40 SET(CMAKE_BUILD_TYPE Profiling) 41 SET(CMAKE_C_FLAGS_PROFILING "-fprofile-arcs -ftest-coverage") 42 43 # Set the DEBUG flag for Debug and Profiling builds 44 IF (CMAKE_BUILD_TYPE MATCHES "Debug|Profiling") 39 45 SET(DEBUG 1) 40 ENDIF (CMAKE_BUILD_TYPE MATCHES "Debug ")46 ENDIF (CMAKE_BUILD_TYPE MATCHES "Debug|Profiling") 41 47 42 48 # some subfolders use yacc and lex parsers
Note: See TracChangeset
for help on using the changeset viewer.