Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Feb 8, 2009, 12:10:57 AM (16 years ago)
Author:
rgrieder
Message:

Cleanup in OrxonoxConfig.h.in. Made use of various CMake features like CheckInclude or CheckCompiles to determine some options and macros in the config header file.

Also removed util/Integers.h and placed the code directory in OrxonoxConfig.h.in.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/buildsystem2/src/util/CMakeLists.txt

    r2638 r2639  
    2525  Exception.h
    2626  ExprParser.h
    27   Integers.h
    2827  Math.h
    2928  MathConvert.h
     
    5453#SET(UTIL_FILES ${UTIL_SRC_FILES} ${UTIL_HDR_FILES})
    5554GENERATE_SOURCE_GROUPS(${UTIL_FILES})
    56 # Also add OrxonoxConfig.h to have it least somewhere in the IDE
    57 LIST(APPEND UTIL_FILES ${CMAKE_BINARY_DIR}/src/OrxonoxConfig.h)
    58 SOURCE_GROUP("" FILES ${CMAKE_BINARY_DIR}/src/OrxonoxConfig.h)
     55# Also add OrxonoxConfig to have it least somewhere in the IDE
     56LIST(APPEND UTIL_FILES
     57  ${CMAKE_BINARY_DIR}/src/OrxonoxConfig.h
     58  ${CMAKE_SOURCE_DIR}/src/OrxonoxConfig.h.in
     59)
     60SOURCE_GROUP("" FILES
     61  ${CMAKE_BINARY_DIR}/src/OrxonoxConfig.h
     62  ${CMAKE_SOURCE_DIR}/src/OrxonoxConfig.h.in
     63)
    5964
    6065IF(NOT GCC_SYSTEM_HEADER_SUPPORT)
Note: See TracChangeset for help on using the changeset viewer.