Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Sep 24, 2009, 11:02:42 AM (15 years ago)
Author:
rgrieder
Message:

Reverted trunk again. We might want to find a way to delete these revisions again (x3n's changes are still available as diff in the commit mails).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/trunk/cmake/CompilerConfig.cmake

    r5774 r5781  
    3434  MESSAGE(STATUS "Warning: Your compiler is not officially supported.")
    3535ENDIF()
     36
     37SET(COMPILER_CONFIG_USER_SCRIPT "" CACHE FILEPATH
     38    "Specify a CMake script if you wish to write your own compiler config.
     39     See CompilerConfigGCC.cmake or CompilerConfigMSVC.cmake for examples.")
     40IF(COMPILER_CONFIG_USER_SCRIPT)
     41  IF(EXISTS ${CMAKE_MODULE_PATH}/${COMPILER_CONFIG_USER_SCRIPT})
     42    INCLUDE(${CMAKE_MODULE_PATH}/${COMPILER_CONFIG_USER_SCRIPT})
     43  ENDIF()
     44ENDIF(COMPILER_CONFIG_USER_SCRIPT)
Note: See TracChangeset for help on using the changeset viewer.