blob: 9f24239b63726f495ed4819bcd2275a026595688 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
#################################################
#
# (C) 2013 Slávek Banko
# slavek (DOT) banko (AT) axis.cz
#
# Improvements and feedback are welcome
#
# This file is released under GPL >= 2
#
#################################################
include_directories(
${CMAKE_BINARY_DIR}
${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_CURRENT_SOURCE_DIR}
${SDL_INCLUDE_DIRS}
${TDE_INCLUDE_DIR}/tde
${TDE_INCLUDE_DIR}
${TQT_INCLUDE_DIRS}
)
link_directories(
${SDL_LIBRARY_DIRS}
${TDE_LIB_DIR}
${TQT_LIBRARY_DIRS}
)
##### noatunnexscope (kpart) ##########
tde_add_kpart( noatunnexscope AUTOMOC
SOURCES noatunplugin.cpp
LINK tdeio-shared noatun
DESTINATION ${PLUGIN_INSTALL_DIR}
)
##### noatunnexscope.bin (executable) #########################
tde_add_executable( noatunnexscope.bin AUTOMOC
SOURCES
renderers.cpp bitmappool.cpp nex.cpp output.cpp input.cpp
gui.cpp regionwidget.cpp convolve.c
LINK tdeio-shared DCOP ${SDL_LIBRARIES} noatun m
DESTINATION ${BIN_INSTALL_DIR}
)
##### other data ################################
tde_create_translated_desktop(
SOURCE nexscope.plugin
DESTINATION ${DATA_INSTALL_DIR}/noatun
PO_DIR noatun-plugins-desktops
)
|