COIN-OR::LEMON - Graph Library

Changeset 541:4b558ee0d4f5 in lemon for CMakeLists.txt


Ignore:
Timestamp:
04/28/09 14:42:28 (15 years ago)
Author:
Alpar Juttner <alpar@…>
Branch:
1.0
Parents:
537:ca12939f8b00 (diff), 540:8a144437db7d (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
Message:

Merge bugfixes #274 and #275

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • CMakeLists.txt

    r521 r541  
    2424INCLUDE(FindGhostscript)
    2525
     26ADD_DEFINITIONS(-DHAVE_CONFIG_H)
     27
    2628INCLUDE(CheckTypeSize)
    27 CHECK_TYPE_SIZE("long long" LONG_LONG)
     29CHECK_TYPE_SIZE("long long" LEMON_LONG_LONG)
    2830
    2931ENABLE_TESTING()
  • CMakeLists.txt

    r540 r541  
    1111
    1212SET(CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake)
     13
     14IF(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
     21ENDIF(MSVC)
    1322
    1423INCLUDE(FindDoxygen)
Note: See TracChangeset for help on using the changeset viewer.