Changeset 519:d3524090d5e2 in lemon for CMakeLists.txt
- Timestamp:
- 02/20/09 21:51:11 (16 years ago)
- Branch:
- 1.0
- Parents:
- 512:65f80c81d41c (diff), 518:b1ef32ab39f3 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent. - Phase:
- public
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
CMakeLists.txt
r504 r519 23 23 INCLUDE(FindDoxygen) 24 24 INCLUDE(FindGhostscript) 25 26 INCLUDE(CheckTypeSize) 27 CHECK_TYPE_SIZE("long long" LONG_LONG) 25 28 26 29 ENABLE_TESTING() -
CMakeLists.txt
r515 r519 11 11 12 12 SET(CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake) 13 14 IF(MSVC) 15 SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /wd4250 /wd4355 /wd4800 /wd4996") 16 # Suppressed warnings: 17 # C4250: 'class1' : inherits 'class2::member' via dominance 18 # C4355: 'this' : used in base member initializer list 19 # C4800: 'type' : forcing value to bool 'true' or 'false' (performance warning) 20 # C4996: 'function': was declared deprecated 21 ENDIF(MSVC) 13 22 14 23 INCLUDE(FindDoxygen)
Note: See TracChangeset
for help on using the changeset viewer.