Navigation


Changeset 445:76a896740f94 in freeDiameter


Ignore:
Timestamp:
Jul 29, 2010, 9:54:57 AM (14 years ago)
Author:
Sebastien Decugis <sdecugis@nict.go.jp>
Branch:
default
Phase:
public
Message:

Added a DebugValgrind? configuration

File:
1 edited

Legend:

Unmodified
Added
Removed
  • CMakeLists.txt

    r436 r445  
    4444SET(CMAKE_C_FLAGS_DEBIANPACKAGE "${CMAKE_C_FLAGS_RELWITHDEBINFO}")
    4545
     46# Add a "DebugValgrind" build type used for checking execution with Valgrind tool
     47SET(CMAKE_C_FLAGS_DEBUGVALGRIND "-Wall -g -O0")
     48
    4649# Set the DEBUG flag for Debug and Profiling builds
    47 IF (CMAKE_BUILD_TYPE MATCHES "Debug|Profiling")
     50IF (CMAKE_BUILD_TYPE MATCHES "Debug|Profiling|DebugValgrind")
    4851  SET(DEBUG 1)
    49 ENDIF (CMAKE_BUILD_TYPE MATCHES "Debug|Profiling")
     52ENDIF (CMAKE_BUILD_TYPE MATCHES "Debug|Profiling|DebugValgrind")
    5053
    5154# some subfolders use yacc and lex parsers
Note: See TracChangeset for help on using the changeset viewer.