Changeset 2325
- Timestamp:
- Dec 3, 2008, 4:15:04 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/buildsystem/CMakeLists.txt
r2277 r2325 52 52 FIND_PACKAGE(OGRE REQUIRED) 53 53 FIND_PACKAGE(CEGUI REQUIRED) 54 # CEGUI_OGRE i ncluded in source54 # CEGUI_OGRE is already included in source 55 55 #FIND_PACKAGE(CEGUI_OGRE REQUIRED) 56 56 FIND_PACKAGE(ENet REQUIRED) … … 61 61 FIND_PACKAGE(ZLIB REQUIRED) 62 62 FIND_PACKAGE(DirectX REQUIRED) 63 FIND_PACKAGE(Lua50 REQUIRED)64 #FIND_PACKAGE(Lua51 QUIET)65 63 66 #don't require the whole tcl rat tail 64 # Require Lua 5.0 or 5.1 65 FIND_PACKAGE(Lua50 QUIET) 66 IF(NOT LUA50_FOUND) 67 FIND_PACKAGE(Lua51 REQUIRED) 68 ENDIF(NOT LUA50_FOUND) 69 70 # Don't require the whole tcl rat tail 67 71 FIND_PACKAGE(TCL QUIET) 68 72 IF(NOT TCL_FOUND)
Note: See TracChangeset
for help on using the changeset viewer.