Changeset 3002
- Timestamp:
- May 20, 2009, 10:45:36 PM (16 years ago)
- Location:
- code/branches/ggz
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/ggz/cmake/LibraryConfig.cmake
r3000 r3002 116 116 FIND_PACKAGE(ZLIB REQUIRED) 117 117 FIND_PACKAGE(GGZ ) 118 IF(GGZMOD_FOUND) 119 ADD_COMPILER_FLAGS("-DHAS_GGZ") 120 ELSE(GGZMOD_FOUND) 121 MESSAGE("GGZMOD not found, disabling GGZ support") 118 IF(NOT GGZMOD_FOUND) 119 MESSAGE("GGZMOD not found, disabling GGZ support") 122 120 ENDIF(GGZMOD_FOUND) 123 121 IF(WIN32) -
code/branches/ggz/src/CMakeLists.txt
r2724 r3002 32 32 # Tolua binding speedup if required 33 33 ADD_COMPILER_FLAGS("-DTOLUA_RELEASE" Release MinSizeRel TOLUA_PARSER_RELEASE) 34 # Enable GGZMode support if found 35 IF(GGZMODE_FOUND) 36 ADD_COMPILER_FLAGS("-DHAS_GGZ") 37 ENDIF() 34 38 35 39 ################ OrxonoxConfig.h ################
Note: See TracChangeset
for help on using the changeset viewer.