mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-25 11:22:55 +00:00
21 lines
369 B
CMake
21 lines
369 B
CMake
project(webslice)
|
|
|
|
include_directories( ${QT_INCLUDES} )
|
|
|
|
set(webslice_SRCS
|
|
main.cpp
|
|
kgraphicswebslice.cpp
|
|
kwebslice.cpp
|
|
)
|
|
|
|
add_executable(webslice ${webslice_SRCS})
|
|
|
|
target_link_libraries(webslice
|
|
${QT_QTCORE_LIBRARY}
|
|
${QT_QTNETWORK_LIBRARY}
|
|
${QT_QTGUI_LIBRARY}
|
|
${QT_QTWEBKIT_LIBRARY}
|
|
${QT_QTSCRIPT_LIBRARY}
|
|
)
|
|
|
|
add_subdirectory(plasma)
|