mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-25 03:12:49 +00:00
19 lines
469 B
CMake
19 lines
469 B
CMake
PROJECT( krichtexteditor )
|
|
FIND_PACKAGE(KDE4 REQUIRED)
|
|
INCLUDE_DIRECTORIES( ${CMAKE_CURRENT_BINARY_DIR} )
|
|
|
|
SET(krichtexteditorSources
|
|
main.cpp
|
|
krichtexteditor.cpp
|
|
)
|
|
|
|
KDE4_ADD_EXECUTABLE(krichtexteditor ${krichtexteditorSources} )
|
|
TARGET_LINK_LIBRARIES(krichtexteditor ${KDE4_KDEUI_LIBS} ${KDE4_KIO_LIBS} )
|
|
|
|
install(TARGETS krichtexteditor DESTINATION ${BIN_INSTALL_DIR})
|
|
install(FILES
|
|
krichtexteditorui.rc
|
|
DESTINATION ${DATA_INSTALL_DIR}/krichtexteditor)
|
|
|
|
|
|
|