From f9440f0f509ffa5046a0c48f97d1f847577e06df Mon Sep 17 00:00:00 2001 From: gregory guy Date: Sat, 16 Feb 2019 13:34:44 +0100 Subject: conversion to the cmake building system Signed-off-by: gregory guy --- backgrounds/CMakeLists.txt | 1 + backgrounds/border-black/CMakeLists.txt | 6 ++++++ backgrounds/border-white/CMakeLists.txt | 6 ++++++ backgrounds/crystal/CMakeLists.txt | 6 ++++++ backgrounds/default/CMakeLists.txt | 6 ++++++ backgrounds/fadeout/CMakeLists.txt | 6 ++++++ backgrounds/fadeout2/CMakeLists.txt | 6 ++++++ backgrounds/fadeout3/CMakeLists.txt | 6 ++++++ backgrounds/osx/CMakeLists.txt | 6 ++++++ 9 files changed, 49 insertions(+) create mode 100644 backgrounds/CMakeLists.txt create mode 100644 backgrounds/border-black/CMakeLists.txt create mode 100644 backgrounds/border-white/CMakeLists.txt create mode 100644 backgrounds/crystal/CMakeLists.txt create mode 100644 backgrounds/default/CMakeLists.txt create mode 100644 backgrounds/fadeout/CMakeLists.txt create mode 100644 backgrounds/fadeout2/CMakeLists.txt create mode 100644 backgrounds/fadeout3/CMakeLists.txt create mode 100644 backgrounds/osx/CMakeLists.txt (limited to 'backgrounds') 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 +) -- cgit v1.2.1