2016-09-03 00:05:54 +00:00
|
|
|
project(krichtexteditor)
|
2014-11-13 01:04:59 +02:00
|
|
|
|
2016-09-03 00:05:54 +00:00
|
|
|
find_package(KDE4 REQUIRED)
|
|
|
|
include(KDE4Defaults)
|
|
|
|
|
|
|
|
include_directories(${KDE4_INCLUDES})
|
|
|
|
add_definitions(${QT_DEFINITIONS} ${KDE4_DEFINITIONS})
|
|
|
|
|
|
|
|
set(krichtexteditorSources
|
2015-08-26 07:41:39 +03:00
|
|
|
main.cpp
|
|
|
|
krichtexteditor.cpp
|
|
|
|
)
|
2014-11-13 01:04:59 +02:00
|
|
|
|
2016-09-03 00:05:54 +00:00
|
|
|
add_executable(krichtexteditor ${krichtexteditorSources})
|
|
|
|
target_link_libraries(krichtexteditor ${KDE4_KDEUI_LIBS} ${KDE4_KIO_LIBS})
|
2014-11-13 01:04:59 +02:00
|
|
|
|
|
|
|
install(TARGETS krichtexteditor DESTINATION ${BIN_INSTALL_DIR})
|
2015-08-26 07:41:39 +03:00
|
|
|
install(FILES krichtexteditorui.rc DESTINATION ${DATA_INSTALL_DIR}/krichtexteditor)
|
2014-11-13 01:04:59 +02:00
|
|
|
|
|
|
|
|
|
|
|
|