diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2022-03-16 23:34:43 +0100 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2022-03-20 18:49:09 +0100 |
commit | febacdee5bf580932e1937f656b475762b48acd6 (patch) | |
tree | 56cf1a5ea34db847036dd71f58e1f9d7b6f128ce /kmymoney2/html | |
parent | 9757aeb46efff389c2b118cb373206d0720235cd (diff) | |
download | kmymoney-febacdee5bf580932e1937f656b475762b48acd6.tar.gz kmymoney-febacdee5bf580932e1937f656b475762b48acd6.zip |
Conversion to the cmake building system.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
(cherry picked from commit a6454b1658d325d6ff2d6ba6c349b772148798e0)
Diffstat (limited to 'kmymoney2/html')
-rw-r--r-- | kmymoney2/html/CMakeLists.txt | 11 | ||||
-rw-r--r-- | kmymoney2/html/images/CMakeLists.txt | 8 |
2 files changed, 19 insertions, 0 deletions
diff --git a/kmymoney2/html/CMakeLists.txt b/kmymoney2/html/CMakeLists.txt new file mode 100644 index 0000000..402ba4c --- /dev/null +++ b/kmymoney2/html/CMakeLists.txt @@ -0,0 +1,11 @@ + +add_subdirectory( images ) + + +file( GLOB _pages RELATIVE "${CMAKE_CURRENT_SOURCE_DIR}" home*.html whats_new*.html *.css ) +list( SORT _pages ) + +install( + FILES ${_pages} + DESTINATION ${DATA_INSTALL_DIR}/kmymoney2/html +) diff --git a/kmymoney2/html/images/CMakeLists.txt b/kmymoney2/html/images/CMakeLists.txt new file mode 100644 index 0000000..3a1d948 --- /dev/null +++ b/kmymoney2/html/images/CMakeLists.txt @@ -0,0 +1,8 @@ + +file( GLOB _images RELATIVE "${CMAKE_CURRENT_SOURCE_DIR}" *.png *.gif ) +list( SORT _images ) + +install( + FILES ${_images} + DESTINATION ${DATA_INSTALL_DIR}/kmymoney2/html/images +) |