Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 7152


Ignore:
Timestamp:
Jun 23, 2010, 7:00:18 PM (14 years ago)
Author:
rgrieder
Message:

Removed "++" signs from CMake variables and targets names. This only concerns tolua++ and tinyxml++.

Location:
code/branches/presentation3
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • code/branches/presentation3/cmake/tools/GenerateToluaBindings.cmake

    r7139 r7152  
    6666  ADD_CUSTOM_COMMAND(
    6767    OUTPUT ${_tolua_cxxfile} ${_tolua_hfile}
    68     COMMAND tolua++app_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}
     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}
    7474    DEPENDS           ${TOLUA_PARSER_DEPENDENCIES}
    7575    IMPLICIT_DEPENDS  ${_implicit_dependencies}
  • code/branches/presentation3/src/external/ceguilua/CMakeLists.txt

    r7143 r7152  
    5656ADD_CUSTOM_COMMAND(
    5757  OUTPUT ${CEGUILUA_BINARY_DIR}/${CMAKE_CFG_INTDIR}/lua_CEGUI.cpp
    58   COMMAND tolua++app_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
     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
    6464  DEPENDS              ${TOLUA_PARSER_DEPENDENCIES}
    6565  WORKING_DIRECTORY    ${RUNTIME_LIBRARY_DIRECTORY}
     
    7979    ${CEGUI_VERSION}
    8080  LINK_LIBRARIES
    81     tolua++_orxonox
     81    tolua_orxonox
    8282    ${LUA_LIBRARIES}
    8383    ${CEGUI_LIBRARY}
  • code/branches/presentation3/src/external/tinyxml/CMakeLists.txt

    r5929 r7152  
    1818 #
    1919
    20 SET_SOURCE_FILES(TINYXML++_FILES
     20SET_SOURCE_FILES(TINYXML_FILES
    2121  ticpp.h
    2222  ticpprc.h
     
    3333)
    3434
    35 ORXONOX_ADD_LIBRARY(tinyxml++_orxonox
     35ORXONOX_ADD_LIBRARY(tinyxml_orxonox
    3636  ORXONOX_EXTERNAL
    3737  NO_DLL_INTERFACE
     
    3939    2.5.3
    4040  SOURCE_FILES
    41     ${TINYXML++_FILES}
     41    ${TINYXML_FILES}
    4242)
  • code/branches/presentation3/src/external/tolua/CMakeLists.txt

    r7143 r7152  
    2020################### Tolua++ library ###################
    2121
    22 SET_SOURCE_FILES(TOLUA++_FILES
     22SET_SOURCE_FILES(TOLUA_FILES
    2323  tolua_event.h
    2424  tolua++.h
     
    3232)
    3333
    34 ORXONOX_ADD_LIBRARY(tolua++_orxonox
     34ORXONOX_ADD_LIBRARY(tolua_orxonox
    3535  ORXONOX_EXTERNAL
    3636  DEFINE_SYMBOL
     
    4141    ${LUA_LIBRARIES}
    4242  SOURCE_FILES
    43     ${TOLUA++_FILES}
     43    ${TOLUA_FILES}
    4444)
    4545
     
    4747################## Tolua++ generator ##################
    4848
    49 ORXONOX_ADD_EXECUTABLE(tolua++app_orxonox
     49ORXONOX_ADD_EXECUTABLE(toluaapp_orxonox
    5050  ORXONOX_EXTERNAL
    5151  VERSION
     
    6161SET(TOLUA_PARSER_SOURCE "${CMAKE_CURRENT_SOURCE_DIR}/all-${LUA_VERSION}.lua" CACHE INTERNAL "")
    6262SET(TOLUA_PARSER_DEPENDENCIES
    63   tolua++app_orxonox
     63  toluaapp_orxonox
    6464  ${CMAKE_CURRENT_SOURCE_DIR}/all-${LUA_VERSION}.lua
    6565  ${CMAKE_CURRENT_SOURCE_DIR}/lua/compat-5.1.lua
  • code/branches/presentation3/src/libraries/core/CMakeLists.txt

    r7135 r7152  
    110110    ogreceguirenderer_orxonox
    111111    ois_orxonox
    112     tinyxml++_orxonox
    113     tolua++_orxonox
     112    tinyxml_orxonox
     113    tolua_orxonox
    114114    util
    115115  SOURCE_FILES
  • code/branches/presentation3/src/orxonox/CMakeLists.txt

    r7135 r7152  
    7777    ${VORBIS_LIBRARY}
    7878    ${OGG_LIBRARY}
    79     tinyxml++_orxonox
    80     tolua++_orxonox
     79    tinyxml_orxonox
     80    tolua_orxonox
    8181    bullet_orxonox
    8282    util
Note: See TracChangeset for help on using the changeset viewer.