mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-28 21:02:51 +00:00
22 lines
453 B
Text
22 lines
453 B
Text
![]() |
project(tetest)
|
||
|
|
||
|
find_package(KDE4 REQUIRED)
|
||
|
include_directories(${KDE4_INCLUDES})
|
||
|
|
||
|
set( EXECUTABLE_OUTPUT_PATH ${CMAKE_CURRENT_BINARY_DIR} )
|
||
|
|
||
|
|
||
|
########### next target ###############
|
||
|
|
||
|
set(hello_SRCS main.cc )
|
||
|
kde4_add_executable(tetest ${hello_SRCS})
|
||
|
target_link_libraries(tetest ${KDE4_KDECORE_LIBS} ${KDE4_KDEUI_LIBS} ${KDE4_KPARTS_LIBS} kdeui )
|
||
|
|
||
|
|
||
|
########### install files ###############
|
||
|
install(TARGETS tetest DESTINATION ${BIN_INSTALL_DIR})
|
||
|
|
||
|
|
||
|
|
||
|
|