mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-24 19:02:48 +00:00
22 lines
470 B
CMake
22 lines
470 B
CMake
project(tetest)
|
|
|
|
find_package(KDE4 REQUIRED)
|
|
include(KDE4Defaults)
|
|
include_directories(${KDE4_INCLUDES})
|
|
|
|
set( EXECUTABLE_OUTPUT_PATH ${CMAKE_CURRENT_BINARY_DIR} )
|
|
|
|
|
|
########### next target ###############
|
|
|
|
set(hello_SRCS main.cc )
|
|
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})
|
|
|
|
|
|
|
|
|