mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-24 02:42:51 +00:00
18 lines
506 B
CMake
18 lines
506 B
CMake
PROJECT( composerhtmleditor )
|
|
|
|
include_directories(
|
|
${CMAKE_SOURCE_DIR}/composereditor-ng )
|
|
|
|
set(composerhtmlSources
|
|
main.cpp
|
|
composerhtmleditor.cpp
|
|
)
|
|
|
|
KDE4_ADD_EXECUTABLE(composerhtmleditor ${composerhtmlSources} )
|
|
TARGET_LINK_LIBRARIES(composerhtmleditor ${QT_QTWEBKIT_LIBRARY} ${KDE4_KDEUI_LIBS} ${KDE4_KIO_LIBS} composereditorng )
|
|
|
|
install(TARGETS composerhtmleditor ${INSTALL_TARGETS_DEFAULT_ARGS})
|
|
install(FILES
|
|
composerhtmleditorui.rc
|
|
DESTINATION ${DATA_INSTALL_DIR}/composerhtmleditor)
|
|
|