Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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/src/external
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • 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
Note: See TracChangeset for help on using the changeset viewer.