Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Sep 11, 2010, 12:34:00 AM (14 years ago)
Author:
landauf
Message:

merged doc branch back to trunk

Location:
code/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • code/trunk

  • code/trunk/src/CMakeLists.txt

    r7224 r7401  
    116116ADD_SUBDIRECTORY(modules)
    117117
    118 ################ Executable ################
     118################## Executable ###################
    119119
    120120INCLUDE_DIRECTORIES(
     
    137137  OUTPUT_NAME orxonox
    138138)
     139# Main executable should depend on all modules
     140ADD_DEPENDENCIES(orxonox-main ${ORXONOX_MODULES})
    139141
    140142# Get name to configure the run scripts
     
    161163  CONFIGURE_FILE("${CMAKE_CURRENT_SOURCE_DIR}/orxonox-main.vcproj.user.in" "${CMAKE_CURRENT_BINARY_DIR}/orxonox-main.vcproj.user")
    162164ENDIF(MSVC)
     165
     166#################### Doxygen ####################
     167
     168# Prepare include paths for Doxygen. This is necessary to display
     169# the correct path to use when including a file, e.g.
     170# core/XMLPort.h instead of src/core/XMLPort.h
     171
     172INCLUDE_DIRECTORIES(${CMAKE_CURRENT_SOURCE_DIR}/modules)
     173GET_DIRECTORY_PROPERTY(_temp INCLUDE_DIRECTORIES)
     174# Replace ';' by spaces
     175STRING(REPLACE ";" " " _temp "${_temp}")
     176SET(DOXYGEN_INCLUDE_DIRECTORIES "${_temp}" PARENT_SCOPE)
Note: See TracChangeset for help on using the changeset viewer.