2023-06-17 18:38:55 +03:00
|
|
|
include_directories(
|
|
|
|
${CMAKE_SOURCE_DIR}/libs
|
|
|
|
${CMAKE_SOURCE_DIR}/libs/kworkspace
|
|
|
|
)
|
2014-11-13 19:30:51 +02:00
|
|
|
|
|
|
|
|
|
|
|
set(plasma-windowed_SRCS
|
|
|
|
singleview.cpp
|
|
|
|
main.cpp
|
|
|
|
plasmaapp.cpp
|
|
|
|
${appletbrowserdialog_SRCS}
|
|
|
|
)
|
|
|
|
|
2015-09-01 04:37:19 +03:00
|
|
|
add_executable(plasma-windowed ${plasma-windowed_SRCS})
|
2014-11-13 19:30:51 +02:00
|
|
|
|
2023-06-17 18:38:55 +03:00
|
|
|
target_link_libraries(plasma-windowed
|
|
|
|
${KDE4_PLASMA_LIBS}
|
|
|
|
${KDE4_KIO_LIBS}
|
|
|
|
${X11_LIBRARIES}
|
|
|
|
${KDE4_KFILE_LIBS}
|
|
|
|
kworkspace
|
|
|
|
)
|
2014-11-13 19:30:51 +02:00
|
|
|
|
2023-06-17 18:38:55 +03:00
|
|
|
install(
|
|
|
|
TARGETS plasma-windowed
|
|
|
|
DESTINATION ${KDE4_BIN_INSTALL_DIR}
|
|
|
|
)
|
2014-11-13 19:30:51 +02:00
|
|
|
|