blob: b39777ec23e16c0a75b19ba32a072d5672b58cde (
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
|
#################################################
#
# (C) 2010 Serghei Amelian
# serghei (DOT) amelian (AT) gmail.com
#
# Improvements and feedback are welcome
#
# This file is released under GPL >= 2
#
#################################################
include_directories(
${TQT_INCLUDE_DIRS}
${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_BINARY_DIR}
${CMAKE_BINARY_DIR}/tdecore
${CMAKE_SOURCE_DIR}/tdecore
)
string( REPLACE "-Wl,--no-undefined" "" CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS}" )
link_directories(
${TDECORE_LIBRARY_DIRS}
)
##### headers ###################################
install( FILES
tdescreensaver.h tdescreensaver_vroot.h
DESTINATION ${INCLUDE_INSTALL_DIR} )
##### tdescreensaver ##############################
set( target tdescreensaver )
set( ${target}_SRCS
main.cpp tdescreensaver.cpp
)
tde_add_library( ${target} SHARED AUTOMOC
SOURCES ${${target}_SRCS}
VERSION 14.0.0
LINK tdecore-shared
DESTINATION ${LIB_INSTALL_DIR}
)
|