Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 2589


Ignore:
Timestamp:
Jan 12, 2009, 4:56:31 PM (15 years ago)
Author:
rgrieder
Message:

CMake bug: TRUE as macro argument does not evaluate to actual true, but \"TRUE\" or 1 works.
This has been resolved either in CMake 2.6.2 or on windows CMake. It also does not occur with the SET command.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/buildsystem2/src/CMakeLists.txt

    r2588 r2589  
    3737
    3838# Set special macro symbols across all libraries
    39 ADD_CXX_FLAGS("-DTIXML_USE_TICPP" TRUE)
    40 ADD_C_FLAGS("-DTIXML_USE_TICPP" TRUE)
     39ADD_CXX_FLAGS("-DTIXML_USE_TICPP" "TRUE")
     40ADD_C_FLAGS  ("-DTIXML_USE_TICPP" "TRUE")
    4141
    4242# Include macros
Note: See TracChangeset for help on using the changeset viewer.