mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-24 10:52:52 +00:00
22 lines
549 B
Text
22 lines
549 B
Text
![]() |
project(kwrite)
|
||
|
|
||
|
cmake_minimum_required(VERSION 3.0.2 FATAL_ERROR)
|
||
|
|
||
|
find_package(KDE4)
|
||
|
include(KDE4Defaults)
|
||
|
|
||
|
include_directories(${KDE4_INCLUDES})
|
||
|
add_definitions(${KDE4_DEFINITIONS})
|
||
|
|
||
|
set(kwrite_sources
|
||
|
kwritemain.cpp
|
||
|
kwriteapp.cpp
|
||
|
)
|
||
|
|
||
|
add_executable(kwrite ${kwrite_sources})
|
||
|
target_link_libraries(kwrite KDE4::ktexteditor KDE4::kio KDE4::kparts)
|
||
|
|
||
|
install(TARGETS kwrite DESTINATION ${BIN_INSTALL_DIR})
|
||
|
install(FILES kwriteui.rc DESTINATION ${DATA_INSTALL_DIR}/kwrite)
|
||
|
install(PROGRAMS kwrite.desktop DESTINATION ${XDG_APPS_INSTALL_DIR})
|