Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jun 20, 2009, 9:20:47 AM (15 years ago)
Author:
rgrieder
Message:

Merged pch branch back to trunk.

Location:
code/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • code/trunk

  • code/trunk/src/CMakeLists.txt

    r3084 r3196  
    2222# various macro includes
    2323INCLUDE(FlagUtilities)
    24 INCLUDE(GenerateToluaBindings)
    25 INCLUDE(InstallUtilities)
    26 INCLUDE(SourceFileUtilities)
     24INCLUDE(TargetUtilities)
    2725
    2826# Use TinyXML++
     
    3129ADD_COMPILER_FLAGS("-DOIS_DYNAMIC_LIB")
    3230# Tolua binding speedup if required
    33 ADD_COMPILER_FLAGS("-DTOLUA_RELEASE" Release MinSizeRel TOLUA_PARSER_RELEASE)
     31ADD_COMPILER_FLAGS("-DTOLUA_RELEASE" ORXONOX_RELEASE)
     32
     33# Default linking is SHARED
     34SET(ORXONOX_DEFAULT_LINK SHARED)
    3435
    3536################ OrxonoxConfig.h ################
     
    7677
    7778SET(GENERATED_FILE_COMMENT
    78    "DO NOT EDIT THIS FILE!
     79   "DO NOT EDIT THIS FILE! <br>
    7980    It has been automatically generated by CMake from OrxonoxConfig.h.in")
    8081# Copy and configure OrxonoxConfig which gets included in every file
     
    8384CONFIGURE_FILE(SpecialConfig.h.in ${CMAKE_CURRENT_BINARY_DIR}/SpecialConfig.h)
    8485
     86SET(ORXONOX_CONFIG_FILES
     87  ${CMAKE_CURRENT_BINARY_DIR}/OrxonoxConfig.h
     88  ${CMAKE_CURRENT_SOURCE_DIR}/OrxonoxConfig.h.in
     89  ${CMAKE_CURRENT_BINARY_DIR}/SpecialConfig.h
     90  ${CMAKE_CURRENT_SOURCE_DIR}/SpecialConfig.h.in
     91)
    8592
    8693############## Include Directories ##############
     
    101108  ${DIRECTX_INCLUDE_DIR}
    102109  ${ZLIB_INCLUDE_DIR}
     110  ${VLD_INCLUDE_DIR}
    103111
    104112  # All library includes are prefixed with the path to avoid conflicts
     
    145153ADD_SUBDIRECTORY(network)
    146154ADD_SUBDIRECTORY(orxonox)
    147 
    148 # Apply version info
    149 SET_TARGET_PROPERTIES(util core network orxonox
    150   PROPERTIES VERSION ${ORXONOX_VERSION})
Note: See TracChangeset for help on using the changeset viewer.