diff options
author | Slávek Banko <[email protected]> | 2022-03-16 23:34:43 +0100 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2022-03-18 12:45:23 +0100 |
commit | a6454b1658d325d6ff2d6ba6c349b772148798e0 (patch) | |
tree | 7301520567c1e8c5396af155b38d9ceb6b71334b /kmymoney2/html/CMakeLists.txt | |
parent | d855f704e838b0bcf33907ff38165fd1f745356b (diff) | |
download | kmymoney-a6454b1658d325d6ff2d6ba6c349b772148798e0.tar.gz kmymoney-a6454b1658d325d6ff2d6ba6c349b772148798e0.zip |
Conversion to the cmake building system.
Signed-off-by: Slávek Banko <[email protected]>
Diffstat (limited to 'kmymoney2/html/CMakeLists.txt')
-rw-r--r-- | kmymoney2/html/CMakeLists.txt | 11 |
1 files changed, 11 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 +) |