From: Vincent van Ravesteijn Date: Mon, 3 Feb 2014 17:13:00 +0000 (+0100) Subject: CMake: Put the docs projects in a subdirectory X-Git-Tag: 2.1.0rc1~264 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=181e64c7249fc563165b6347e307e36036513d4e;p=lyx.git CMake: Put the docs projects in a subdirectory --- diff --git a/development/cmake/doc/CMakeLists.txt b/development/cmake/doc/CMakeLists.txt index b9e17440ea..7d9eef374a 100644 --- a/development/cmake/doc/CMakeLists.txt +++ b/development/cmake/doc/CMakeLists.txt @@ -48,3 +48,6 @@ install(FILES "${CMAKE_CURRENT_BINARY_DIR}/LFUNs.lyx" DESTINATION "${LYX_DATA_SU ADD_CUSTOM_TARGET(doc ALL DEPENDS ${_docs}) ADD_CUSTOM_TARGET(lfundoc DEPENDS LFUNs.lyx) + +set_target_properties(doc lfundoc PROPERTIES FOLDER "doc") + diff --git a/development/cmake/man/CMakeLists.txt b/development/cmake/man/CMakeLists.txt index cf720cf64b..6b795c93f6 100755 --- a/development/cmake/man/CMakeLists.txt +++ b/development/cmake/man/CMakeLists.txt @@ -26,6 +26,7 @@ foreach(_mn lyx.1in src/client/lyxclient.1in src/tex2lyx/tex2lyx.1in) endforeach(_mn) ADD_CUSTOM_TARGET(man ALL DEPENDS ${_manuals}) +set_target_properties(man PROPERTIES FOLDER "doc") install(FILES ${_manuals} DESTINATION ${LYX_MAN_DIR}/man1)