mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-24 10:52:52 +00:00
15 lines
239 B
CMake
15 lines
239 B
CMake
|
|
set(ispdb_srcs
|
|
main.cpp
|
|
ispdb.cpp
|
|
)
|
|
|
|
kde4_add_executable(ispdb ${ispdb_srcs})
|
|
|
|
target_link_libraries(ispdb
|
|
${KDE4_KDECORE_LIBS}
|
|
${KDE4_KIO_LIBS}
|
|
${KDEPIMLIBS_KMIME_LIBS}
|
|
)
|
|
|
|
install(TARGETS ispdb ${INSTALL_TARGETS_DEFAULT_ARGS})
|