Changeset 3196 for code/trunk/src/tolua
- Timestamp:
- Jun 20, 2009, 9:20:47 AM (15 years ago)
- Location:
- code/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk
- Property svn:mergeinfo changed
/code/branches/pch (added) merged: 3114-3118,3124-3125,3127-3131,3133,3138-3194
- Property svn:mergeinfo changed
-
code/trunk/src/tolua/CMakeLists.txt
r2710 r3196 36 36 ADD_COMPILER_FLAGS("-w") 37 37 38 ADD_LIBRARY(tolua++_orxonox SHARED ${TOLUA++_FILES}) 39 SET_TARGET_PROPERTIES(tolua++_orxonox PROPERTIES DEFINE_SYMBOL "TOLUA_SHARED_BUILD") 40 TARGET_LINK_LIBRARIES(tolua++_orxonox ${LUA_LIBRARIES}) 41 42 SET_TARGET_PROPERTIES(tolua++_orxonox PROPERTIES VERSION 1.0.92) 43 44 ORXONOX_INSTALL(tolua++_orxonox) 38 ORXONOX_ADD_LIBRARY(tolua++_orxonox 39 ORXONOX_EXTERNAL 40 DEFINE_SYMBOL 41 "TOLUA_SHARED_BUILD" 42 VERSION 43 1.0.92 44 LINK_LIBRARIES 45 ${LUA_LIBRARIES} 46 SOURCE_FILES 47 ${TOLUA++_FILES} 48 ) 45 49 46 50 47 51 ################## Tolua++ generator ################## 48 52 49 ADD_EXECUTABLE(tolua++app_orxonox tolua.c) 50 TARGET_LINK_LIBRARIES(tolua++app_orxonox tolua++_orxonox ${LUA_LIBRARIES}) 51 52 OPTION(TOLUA_PARSER_RELEASE "Disable all debug messages from tolua bind files for Release and MinSizeRel build types." FALSE) 53 ORXONOX_ADD_EXECUTABLE(tolua++app_orxonox 54 ORXONOX_EXTERNAL 55 VERSION 56 1.0.92 57 LINK_LIBRARIES 58 ${LUA_LIBRARIES} 59 SOURCE_FILES 60 tolua.c 61 ) 53 62 54 63 # Set some variables to the cache in order to use them in the TOLUA macro
Note: See TracChangeset
for help on using the changeset viewer.