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.
51 lines
1.0 KiB
51 lines
1.0 KiB
13 years ago
|
#################################################
|
||
|
#
|
||
|
# (C) 2012 Serghei Amelian
|
||
|
# serghei (DOT) amelian (AT) gmail.com
|
||
|
#
|
||
|
# Improvements and feedback are welcome
|
||
|
#
|
||
|
# This file is released under GPL >= 2
|
||
|
#
|
||
|
#################################################
|
||
|
|
||
|
include_directories(
|
||
|
${CMAKE_CURRENT_BINARY_DIR}
|
||
|
${TDE_INCLUDE_DIR}
|
||
|
${TQT_INCLUDE_DIRS}
|
||
|
)
|
||
|
|
||
|
link_directories(
|
||
|
${TQT_LIBRARY_DIRS}
|
||
|
)
|
||
|
|
||
|
|
||
|
##### headers ###################################
|
||
|
|
||
|
install( FILES
|
||
|
runnergui.h
|
||
12 years ago
|
DESTINATION ${INCLUDE_INSTALL_DIR}/tdeunittest )
|
||
13 years ago
|
|
||
|
install( PROGRAMS
|
||
12 years ago
|
tdeunittest tdeunittestmod tdeunittest_debughelper
|
||
13 years ago
|
DESTINATION ${BIN_INSTALL_DIR} )
|
||
|
|
||
|
|
||
12 years ago
|
##### tdeunittestgui (shared) #####################
|
||
13 years ago
|
|
||
12 years ago
|
tde_add_library( tdeunittestgui SHARED AUTOMOC
|
||
13 years ago
|
SOURCES testerwidget.ui runnergui.cpp dcopinterface.skel
|
||
12 years ago
|
VERSION 0.0.0
|
||
12 years ago
|
LINK tdeunittest-shared
|
||
13 years ago
|
DESTINATION ${LIB_INSTALL_DIR}
|
||
|
)
|
||
|
|
||
|
|
||
12 years ago
|
##### tdeunittestguimodrunner (executable) ########
|
||
13 years ago
|
|
||
12 years ago
|
tde_add_executable( tdeunittestguimodrunner
|
||
13 years ago
|
SOURCES guimodrunner.cpp
|
||
12 years ago
|
LINK tdeunittestgui-shared
|
||
13 years ago
|
DESTINATION ${BIN_INSTALL_DIR}
|
||
|
)
|