diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-06-10 01:46:23 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-06-10 01:46:23 -0500 |
commit | dfb75324af3dfdb983f354782c6025f37e665ee5 (patch) | |
tree | 776c8911b5ac2dbd6bd1ee2f9692ace3f4199e51 /twin/clients | |
parent | 1e959a2aeca4499a1b8a79d1793953348638b69f (diff) | |
download | tdebase-dfb75324af3dfdb983f354782c6025f37e665ee5.tar.gz tdebase-dfb75324af3dfdb983f354782c6025f37e665ee5.zip |
Fix Keramic data file installation and add long long check to CMake
This closes Bug 905
Thanks to Roman Savochenko and Leandro Nini for the patches!
Diffstat (limited to 'twin/clients')
-rw-r--r-- | twin/clients/keramik/CMakeLists.txt | 17 |
1 files changed, 3 insertions, 14 deletions
diff --git a/twin/clients/keramik/CMakeLists.txt b/twin/clients/keramik/CMakeLists.txt index 67e739d48..89f563d3a 100644 --- a/twin/clients/keramik/CMakeLists.txt +++ b/twin/clients/keramik/CMakeLists.txt @@ -42,22 +42,11 @@ tde_add_kpart( twin3_keramik AUTOMOC ##### tiles.h (header) ########################## -set( pics - pics/caption-large-left.png pics/caption-small-right.png - pics/titlebar-center.png pics/titlebutton-square.png - pics/border-left.png pics/caption-large-right.png - pics/grabbar-center.png pics/titlebar-left.png - pics/border-right.png pics/caption-small-center.png - pics/grabbar-left.png pics/titlebar-right.png - pics/caption-large-center.png pics/caption-small-left.png - pics/grabbar-right.png pics/titlebutton-round.png - pics/bottom-left.png pics/bottom-right.png pics/bottom-center.png - pics/titlebutton-square-large.png pics/titlebutton-square-huge.png - pics/titlebutton-round-large.png pics/titlebutton-round-huge.png ) +file(GLOB _pics "${CMAKE_CURRENT_SOURCE_DIR}/pics/*.png" ) add_custom_command( OUTPUT tiles.h - COMMAND ${CMAKE_CURRENT_BINARY_DIR}/embedtool ${pics} - DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/embedtool ${pics} ) + COMMAND ${CMAKE_CURRENT_BINARY_DIR}/embedtool ${_pics} + DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/embedtool ${_pics} ) tde_add_executable( embedtool SOURCES embedtool.cpp |