diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2015-03-30 14:43:15 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-03-30 14:43:15 -0700 |
commit | eecf40c121274108923885dec386c908b575883c (patch) | |
tree | db47021622a02322f1df7f4114d8bfaf355a5380 /CMakeLists.txt | |
parent | ec0de544504232be448a0cc8f047805199170ba5 (diff) | |
download | subsurface-eecf40c121274108923885dec386c908b575883c.tar.gz |
cmake: fix Documentation build and install
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 1fcfba2f6..758d3cf28 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -323,16 +323,19 @@ test(TestProfile testprofile.cpp) test(TestGpsCoords testgpscoords.cpp) test(TestParse testparse.cpp) +ADD_CUSTOM_TARGET(documentation ALL mkdir -p ${CMAKE_BINARY_DIR}/Documentation/ \\; make -C ${CMAKE_SOURCE_DIR}/Documentation OUT=${CMAKE_BINARY_DIR}/Documentation/ doc) + # install Subsurface # first some variables with files that need installing set(DOCFILES README ReleaseNotes/ReleaseNotes.txt - SupportedDivecomputers.txt Documentation/user-manual.html - Documentation/user-manual_es.html - Documentation/user-manual_fr.html - Documentation/user-manual_ru.html + SupportedDivecomputers.txt + ${CMAKE_BINARY_DIR}/Documentation/user-manual.html + ${CMAKE_BINARY_DIR}/Documentation/user-manual_es.html + ${CMAKE_BINARY_DIR}/Documentation/user-manual_fr.html + ${CMAKE_BINARY_DIR}/Documentation/user-manual_ru.html ) set(TRANSLATION_SRC |