diff options
author | Tomaz Canabrava <tomaz.canabrava@intel.com> | 2015-11-23 12:39:07 -0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-12-16 08:01:48 -0800 |
commit | 30999a6898849ddcee829f3081532fe8369c2b45 (patch) | |
tree | 5c0b6cb97bc243d683506e63d52f268e88805cb6 /CMakeLists.txt | |
parent | cc6875d39e668fc16bccc700a91e4fcfa19e539f (diff) | |
download | subsurface-30999a6898849ddcee829f3081532fe8369c2b45.tar.gz |
Move run on build dir code out of the main cmake
Signed-off-by: Tomaz Canabrava <tomaz.canabrava@intel.com>
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 31 |
1 files changed, 1 insertions, 30 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index c4ce04be3..904bab29a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -97,6 +97,7 @@ include(cmake/Modules/HandleFindGrantlee.cmake) include(cmake/Modules/HandleFtdiSupport.cmake) include(cmake/Modules/HandleUserManual.cmake) include(cmake/Modules/HandleVersionGeneration.cmake) +include(cmake/Modules/RunOnBuildDir.cmake) pkg_config_library(LIBXML libxml-2.0 REQUIRED) pkg_config_library(LIBSQLITE3 sqlite3 REQUIRED) @@ -289,36 +290,6 @@ endif() add_executable(export-html EXCLUDE_FROM_ALL export-html.cpp ${SUBSURFACE_RESOURCES}) target_link_libraries(export-html subsurface_corelib ${SUBSURFACE_LINK_LIBRARIES}) -# install a few things so that one can run Subsurface from the build -# directory -add_custom_target(themeLink ALL - COMMAND - rm -f ${CMAKE_BINARY_DIR}/theme && - ln -s ${CMAKE_SOURCE_DIR}/theme ${CMAKE_BINARY_DIR}/theme -) -if(NOT NO_PRINTING) - add_custom_target(printing_templatesLink ALL - COMMAND - rm -f ${CMAKE_BINARY_DIR}/printing_templates && - ln -s ${CMAKE_SOURCE_DIR}/printing_templates ${CMAKE_BINARY_DIR}/printing_templates - ) -endif() -if(NOT NO_DOCS) - add_custom_target( - documentationLink ALL - COMMAND - mkdir -p ${CMAKE_BINARY_DIR}/Documentation/ && - rm -rf ${CMAKE_BINARY_DIR}/Documentation/images && - ln -s ${CMAKE_SOURCE_DIR}/Documentation/images ${CMAKE_BINARY_DIR}/Documentation/images - ) - add_custom_target( - documentation ALL - COMMAND - ${CMAKE_MAKE_PROGRAM} -C ${CMAKE_SOURCE_DIR}/Documentation OUT=${CMAKE_BINARY_DIR}/Documentation/ doc - DEPENDS documentationLink - ) -endif() - # install Subsurface # first some variables with files that need installing set(DOCFILES |