From 181e64c7249fc563165b6347e307e36036513d4e Mon Sep 17 00:00:00 2001 From: Vincent van Ravesteijn Date: Mon, 3 Feb 2014 18:13:00 +0100 Subject: [PATCH] CMake: Put the docs projects in a subdirectory --- development/cmake/doc/CMakeLists.txt | 3 +++ development/cmake/man/CMakeLists.txt | 1 + 2 files changed, 4 insertions(+) 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) -- 2.39.5