2015-11-23 14:39:07 +00:00
|
|
|
# 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 &&
|
2016-01-07 17:33:28 +00:00
|
|
|
ln -sf ${CMAKE_SOURCE_DIR}/theme ${CMAKE_BINARY_DIR}/theme
|
2015-11-23 14:39:07 +00:00
|
|
|
)
|
|
|
|
if(NOT NO_PRINTING)
|
|
|
|
add_custom_target(printing_templatesLink ALL
|
|
|
|
COMMAND
|
|
|
|
rm -f ${CMAKE_BINARY_DIR}/printing_templates &&
|
2016-01-07 17:33:28 +00:00
|
|
|
ln -sf ${CMAKE_SOURCE_DIR}/printing_templates ${CMAKE_BINARY_DIR}/printing_templates
|
2015-11-23 14:39:07 +00:00
|
|
|
)
|
|
|
|
endif()
|
|
|
|
if(NOT NO_DOCS)
|
|
|
|
add_custom_target(
|
|
|
|
documentationLink ALL
|
|
|
|
COMMAND
|
|
|
|
mkdir -p ${CMAKE_BINARY_DIR}/Documentation/ &&
|
|
|
|
rm -rf ${CMAKE_BINARY_DIR}/Documentation/images &&
|
2021-10-19 19:14:34 +00:00
|
|
|
rm -rf ${CMAKE_BINARY_DIR}/Documentation/mobile-images &&
|
2018-11-03 04:55:48 +00:00
|
|
|
ln -sf ${CMAKE_SOURCE_DIR}/Documentation/images ${CMAKE_BINARY_DIR}/Documentation/images &&
|
|
|
|
ln -sf ${CMAKE_SOURCE_DIR}/Documentation/mobile-images ${CMAKE_BINARY_DIR}/Documentation/mobile-images
|
2015-11-23 14:39:07 +00:00
|
|
|
)
|
|
|
|
add_custom_target(
|
|
|
|
documentation ALL
|
|
|
|
COMMAND
|
|
|
|
${CMAKE_MAKE_PROGRAM} -C ${CMAKE_SOURCE_DIR}/Documentation OUT=${CMAKE_BINARY_DIR}/Documentation/ doc
|
|
|
|
DEPENDS documentationLink
|
|
|
|
)
|
2018-11-03 04:55:48 +00:00
|
|
|
endif()
|