diff options
author | gregory guy <g-gregory@gmx.fr> | 2019-02-16 13:34:44 +0100 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2019-03-02 11:41:03 +0100 |
commit | f9440f0f509ffa5046a0c48f97d1f847577e06df (patch) | |
tree | e35ced7099406afbedf65779fcb0c6856754b83d /backgrounds | |
parent | 3994ab2ba95d09f73ae5af223f8b2bcdc2f04cfd (diff) | |
download | kooldock-f9440f0f509ffa5046a0c48f97d1f847577e06df.tar.gz kooldock-f9440f0f509ffa5046a0c48f97d1f847577e06df.zip |
conversion to the cmake building system
Signed-off-by: gregory guy <g-gregory@gmx.fr>
Diffstat (limited to 'backgrounds')
-rw-r--r-- | backgrounds/CMakeLists.txt | 1 | ||||
-rw-r--r-- | backgrounds/border-black/CMakeLists.txt | 6 | ||||
-rw-r--r-- | backgrounds/border-white/CMakeLists.txt | 6 | ||||
-rw-r--r-- | backgrounds/crystal/CMakeLists.txt | 6 | ||||
-rw-r--r-- | backgrounds/default/CMakeLists.txt | 6 | ||||
-rw-r--r-- | backgrounds/fadeout/CMakeLists.txt | 6 | ||||
-rw-r--r-- | backgrounds/fadeout2/CMakeLists.txt | 6 | ||||
-rw-r--r-- | backgrounds/fadeout3/CMakeLists.txt | 6 | ||||
-rw-r--r-- | backgrounds/osx/CMakeLists.txt | 6 |
9 files changed, 49 insertions, 0 deletions
diff --git a/backgrounds/CMakeLists.txt b/backgrounds/CMakeLists.txt new file mode 100644 index 0000000..6d0aa9f --- /dev/null +++ b/backgrounds/CMakeLists.txt @@ -0,0 +1 @@ +tde_auto_add_subdirectories( ) diff --git a/backgrounds/border-black/CMakeLists.txt b/backgrounds/border-black/CMakeLists.txt new file mode 100644 index 0000000..62b424c --- /dev/null +++ b/backgrounds/border-black/CMakeLists.txt @@ -0,0 +1,6 @@ +file( GLOB _pics RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.png ) + +install( + FILES ${_pics} + DESTINATION ${DATA_INSTALL_DIR}/${PROJECT_NAME}/backgrounds/border-black +) diff --git a/backgrounds/border-white/CMakeLists.txt b/backgrounds/border-white/CMakeLists.txt new file mode 100644 index 0000000..bc25ab0 --- /dev/null +++ b/backgrounds/border-white/CMakeLists.txt @@ -0,0 +1,6 @@ +file( GLOB _pics RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.png ) + +install( + FILES ${_pics} + DESTINATION ${DATA_INSTALL_DIR}/${PROJECT_NAME}/backgrounds/border-white +) diff --git a/backgrounds/crystal/CMakeLists.txt b/backgrounds/crystal/CMakeLists.txt new file mode 100644 index 0000000..68bf2f9 --- /dev/null +++ b/backgrounds/crystal/CMakeLists.txt @@ -0,0 +1,6 @@ +file( GLOB _pics RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.png ) + +install( + FILES ${_pics} + DESTINATION ${DATA_INSTALL_DIR}/${PROJECT_NAME}/backgrounds/crystal +) diff --git a/backgrounds/default/CMakeLists.txt b/backgrounds/default/CMakeLists.txt new file mode 100644 index 0000000..d7f3783 --- /dev/null +++ b/backgrounds/default/CMakeLists.txt @@ -0,0 +1,6 @@ +file( GLOB _pics RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.png ) + +install( + FILES ${_pics} + DESTINATION ${DATA_INSTALL_DIR}/${PROJECT_NAME}/backgrounds/default +) diff --git a/backgrounds/fadeout/CMakeLists.txt b/backgrounds/fadeout/CMakeLists.txt new file mode 100644 index 0000000..b1a363b --- /dev/null +++ b/backgrounds/fadeout/CMakeLists.txt @@ -0,0 +1,6 @@ +file( GLOB _pics RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.png ) + +install( + FILES ${_pics} + DESTINATION ${DATA_INSTALL_DIR}/${PROJECT_NAME}/backgrounds/fadeout +) diff --git a/backgrounds/fadeout2/CMakeLists.txt b/backgrounds/fadeout2/CMakeLists.txt new file mode 100644 index 0000000..b66689b --- /dev/null +++ b/backgrounds/fadeout2/CMakeLists.txt @@ -0,0 +1,6 @@ +file( GLOB _pics RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.png ) + +install( + FILES ${_pics} + DESTINATION ${DATA_INSTALL_DIR}/${PROJECT_NAME}/backgrounds/fadeout2 +) diff --git a/backgrounds/fadeout3/CMakeLists.txt b/backgrounds/fadeout3/CMakeLists.txt new file mode 100644 index 0000000..54d690a --- /dev/null +++ b/backgrounds/fadeout3/CMakeLists.txt @@ -0,0 +1,6 @@ +file( GLOB _pics RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.png ) + +install( + FILES ${_pics} + DESTINATION ${DATA_INSTALL_DIR}/${PROJECT_NAME}/backgrounds/fadeout3 +) diff --git a/backgrounds/osx/CMakeLists.txt b/backgrounds/osx/CMakeLists.txt new file mode 100644 index 0000000..d394831 --- /dev/null +++ b/backgrounds/osx/CMakeLists.txt @@ -0,0 +1,6 @@ +file( GLOB _pics RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.png ) + +install( + FILES ${_pics} + DESTINATION ${DATA_INSTALL_DIR}/${PROJECT_NAME}/backgrounds/osx +) |