Changeset 7152 for code/branches/presentation3
- Timestamp:
- Jun 23, 2010, 7:00:18 PM (14 years ago)
- Location:
- code/branches/presentation3
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/presentation3/cmake/tools/GenerateToluaBindings.cmake
r7139 r7152 66 66 ADD_CUSTOM_COMMAND( 67 67 OUTPUT ${_tolua_cxxfile} ${_tolua_hfile} 68 COMMAND tolua ++app_orxonox -n ${_tolua_package}69 70 71 72 73 68 COMMAND toluaapp_orxonox -n ${_tolua_package} 69 -w ${CMAKE_CURRENT_SOURCE_DIR} 70 -o ${_tolua_cxxfile} 71 -H ${_tolua_hfile} 72 -s ${TOLUA_PARSER_SOURCE} 73 ${_tolua_pkgfile} 74 74 DEPENDS ${TOLUA_PARSER_DEPENDENCIES} 75 75 IMPLICIT_DEPENDS ${_implicit_dependencies} -
code/branches/presentation3/src/external/ceguilua/CMakeLists.txt
r7143 r7152 56 56 ADD_CUSTOM_COMMAND( 57 57 OUTPUT ${CEGUILUA_BINARY_DIR}/${CMAKE_CFG_INTDIR}/lua_CEGUI.cpp 58 COMMAND tolua ++app_orxonox -n CEGUI59 60 61 62 63 58 COMMAND toluaapp_orxonox -n CEGUI 59 -w ${CEGUILUA_BINARY_DIR} 60 -o ${CMAKE_CFG_INTDIR}/lua_CEGUI.cpp 61 -L exceptions.lua 62 -s ${TOLUA_PARSER_SOURCE} 63 CEGUI.pkg 64 64 DEPENDS ${TOLUA_PARSER_DEPENDENCIES} 65 65 WORKING_DIRECTORY ${RUNTIME_LIBRARY_DIRECTORY} … … 79 79 ${CEGUI_VERSION} 80 80 LINK_LIBRARIES 81 tolua ++_orxonox81 tolua_orxonox 82 82 ${LUA_LIBRARIES} 83 83 ${CEGUI_LIBRARY} -
code/branches/presentation3/src/external/tinyxml/CMakeLists.txt
r5929 r7152 18 18 # 19 19 20 SET_SOURCE_FILES(TINYXML ++_FILES20 SET_SOURCE_FILES(TINYXML_FILES 21 21 ticpp.h 22 22 ticpprc.h … … 33 33 ) 34 34 35 ORXONOX_ADD_LIBRARY(tinyxml ++_orxonox35 ORXONOX_ADD_LIBRARY(tinyxml_orxonox 36 36 ORXONOX_EXTERNAL 37 37 NO_DLL_INTERFACE … … 39 39 2.5.3 40 40 SOURCE_FILES 41 ${TINYXML ++_FILES}41 ${TINYXML_FILES} 42 42 ) -
code/branches/presentation3/src/external/tolua/CMakeLists.txt
r7143 r7152 20 20 ################### Tolua++ library ################### 21 21 22 SET_SOURCE_FILES(TOLUA ++_FILES22 SET_SOURCE_FILES(TOLUA_FILES 23 23 tolua_event.h 24 24 tolua++.h … … 32 32 ) 33 33 34 ORXONOX_ADD_LIBRARY(tolua ++_orxonox34 ORXONOX_ADD_LIBRARY(tolua_orxonox 35 35 ORXONOX_EXTERNAL 36 36 DEFINE_SYMBOL … … 41 41 ${LUA_LIBRARIES} 42 42 SOURCE_FILES 43 ${TOLUA ++_FILES}43 ${TOLUA_FILES} 44 44 ) 45 45 … … 47 47 ################## Tolua++ generator ################## 48 48 49 ORXONOX_ADD_EXECUTABLE(tolua ++app_orxonox49 ORXONOX_ADD_EXECUTABLE(toluaapp_orxonox 50 50 ORXONOX_EXTERNAL 51 51 VERSION … … 61 61 SET(TOLUA_PARSER_SOURCE "${CMAKE_CURRENT_SOURCE_DIR}/all-${LUA_VERSION}.lua" CACHE INTERNAL "") 62 62 SET(TOLUA_PARSER_DEPENDENCIES 63 tolua ++app_orxonox63 toluaapp_orxonox 64 64 ${CMAKE_CURRENT_SOURCE_DIR}/all-${LUA_VERSION}.lua 65 65 ${CMAKE_CURRENT_SOURCE_DIR}/lua/compat-5.1.lua -
code/branches/presentation3/src/libraries/core/CMakeLists.txt
r7135 r7152 110 110 ogreceguirenderer_orxonox 111 111 ois_orxonox 112 tinyxml ++_orxonox113 tolua ++_orxonox112 tinyxml_orxonox 113 tolua_orxonox 114 114 util 115 115 SOURCE_FILES -
code/branches/presentation3/src/orxonox/CMakeLists.txt
r7135 r7152 77 77 ${VORBIS_LIBRARY} 78 78 ${OGG_LIBRARY} 79 tinyxml ++_orxonox80 tolua ++_orxonox79 tinyxml_orxonox 80 tolua_orxonox 81 81 bullet_orxonox 82 82 util
Note: See TracChangeset
for help on using the changeset viewer.