2014-11-13 01:04:59 +02:00
|
|
|
project(tetest)
|
|
|
|
|
|
|
|
find_package(KDE4 REQUIRED)
|
2015-07-15 20:20:08 +00:00
|
|
|
include(KDE4Defaults)
|
2014-11-13 01:04:59 +02:00
|
|
|
include_directories(${KDE4_INCLUDES})
|
|
|
|
|
|
|
|
set( EXECUTABLE_OUTPUT_PATH ${CMAKE_CURRENT_BINARY_DIR} )
|
|
|
|
|
|
|
|
|
|
|
|
########### next target ###############
|
|
|
|
|
|
|
|
set(hello_SRCS main.cc )
|
2015-09-01 01:05:33 +03:00
|
|
|
add_executable(tetest ${hello_SRCS})
|
2014-11-13 01:04:59 +02:00
|
|
|
target_link_libraries(tetest ${KDE4_KDECORE_LIBS} ${KDE4_KDEUI_LIBS} ${KDE4_KPARTS_LIBS} kdeui )
|
|
|
|
|
|
|
|
|
|
|
|
########### install files ###############
|
|
|
|
install(TARGETS tetest DESTINATION ${BIN_INSTALL_DIR})
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|