Changeset 10582 for code/branches/core7/CMakeLists.txt
- Timestamp:
- Sep 12, 2015, 7:28:17 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/core7/CMakeLists.txt
r10547 r10582 83 83 SET(CMAKE_LOG_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/${DEFAULT_LOG_PATH}) 84 84 85 # Set the extension of the dynamic modules85 # Set the extension of the helper-files for dynamic modules 86 86 SET(ORXONOX_MODULE_EXTENSION ".module") 87 87 SET(ORXONOX_PLUGIN_EXTENSION ".plugin") 88 89 # Delete all existing helper-files for dynamic modules 90 # modules: 91 FILE(GLOB_RECURSE _helper_files ${CMAKE_MODULE_OUTPUT_DIRECTORY}/*${ORXONOX_MODULE_EXTENSION}) 92 IF(_helper_files) 93 FILE(REMOVE ${_helper_files}) 94 ENDIF() 95 # plugins: 96 FILE(GLOB_RECURSE _helper_files ${CMAKE_PLUGIN_OUTPUT_DIRECTORY}/*${ORXONOX_PLUGIN_EXTENSION}) 97 IF(_helper_files) 98 FILE(REMOVE ${_helper_files}) 99 ENDIF() 88 100 89 101 # Sets where to find the external libraries like OgreMain.dll at runtime
Note: See TracChangeset
for help on using the changeset viewer.