You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
71 lines
1.4 KiB
71 lines
1.4 KiB
14 years ago
|
#################################################
|
||
|
#
|
||
|
# (C) 2010 Serghei Amelian
|
||
|
# serghei (DOT) amelian (AT) gmail.com
|
||
|
#
|
||
|
# Improvements and feedback are welcome
|
||
|
#
|
||
|
# This file is released under GPL >= 2
|
||
|
#
|
||
|
#################################################
|
||
|
|
||
|
add_definitions(
|
||
|
-UQT_NO_ASCII_CAST
|
||
|
-DQT_PLUGIN
|
||
|
)
|
||
|
|
||
|
include_directories(
|
||
|
${TQT_INCLUDE_DIRS}
|
||
|
${CMAKE_CURRENT_BINARY_DIR}
|
||
|
${CMAKE_BINARY_DIR}
|
||
|
${CMAKE_CURRENT_SOURCE_DIR}
|
||
13 years ago
|
${CMAKE_BINARY_DIR}/tdecore
|
||
|
${CMAKE_SOURCE_DIR}/tdefx
|
||
|
${CMAKE_SOURCE_DIR}/tdecore
|
||
14 years ago
|
)
|
||
|
|
||
|
link_directories(
|
||
|
${TQT_LIBRARY_DIRS}
|
||
|
)
|
||
|
|
||
|
|
||
|
##### genembed ##################################
|
||
|
|
||
|
set( target genembed )
|
||
|
|
||
|
set( ${target}_SRCS
|
||
|
genembed.cpp
|
||
|
)
|
||
|
|
||
|
tde_add_executable( ${target}
|
||
|
SOURCES ${${target}_SRCS}
|
||
13 years ago
|
LINK tdefx-shared
|
||
14 years ago
|
)
|
||
|
|
||
|
|
||
|
##### pixmaps.keramik ###########################
|
||
|
|
||
|
file(GLOB _pics "${CMAKE_CURRENT_SOURCE_DIR}/pics/*.png" )
|
||
|
|
||
|
add_custom_command(
|
||
|
OUTPUT pixmaps.keramik keramikrc.h
|
||
|
COMMAND ./genembed ${_pics} 2>/dev/null > pixmaps.keramik
|
||
|
DEPENDS genembed )
|
||
|
|
||
|
|
||
|
##### keramik ###################################
|
||
|
|
||
|
set( target keramik )
|
||
|
|
||
|
set( ${target}_SRCS
|
||
|
keramik.cpp pixmaploader.cpp gradients.cpp colorutil.cpp
|
||
|
)
|
||
|
|
||
|
set_source_files_properties( pixmaploader.cpp PROPERTIES OBJECT_DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/pixmaps.keramik )
|
||
|
|
||
|
tde_add_kpart( ${target} AUTOMOC
|
||
|
SOURCES ${${target}_SRCS}
|
||
13 years ago
|
LINK tdefx-shared Xext
|
||
14 years ago
|
DESTINATION ${PLUGIN_INSTALL_DIR}/plugins/styles
|
||
|
)
|