diff options
Diffstat (limited to 'src/kile/test/CMakeLists.txt')
-rw-r--r-- | src/kile/test/CMakeLists.txt | 20 |
1 files changed, 12 insertions, 8 deletions
diff --git a/src/kile/test/CMakeLists.txt b/src/kile/test/CMakeLists.txt index c5a28e1..369119c 100644 --- a/src/kile/test/CMakeLists.txt +++ b/src/kile/test/CMakeLists.txt @@ -1,13 +1,17 @@ ########### install files ############### -SET( testFiles - runTests.sh - test.tex - test_plain.tex - test.bib - test_bib.tex - test_index.tex +install( + PROGRAMS runTests.sh + DESTINATION ${DATA_INSTALL_DIR}/${PROJECT_NAME}/test ) -INSTALL( FILES ${testFiles} DESTINATION share/apps/kile/test ) +install( + FILES + test.tex + test_plain.tex + test.bib + test_bib.tex + test_index.tex + DESTINATION ${DATA_INSTALL_DIR}/${PROJECT_NAME}/test +) |