mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-23 18:32:50 +00:00
18 lines
281 B
CMake
18 lines
281 B
CMake
project(KMail)
|
|
|
|
add_executable(kmail main.cpp)
|
|
|
|
target_link_libraries(kmail
|
|
${KDE4_KDECORE_LIBS}
|
|
${KDE4_KEMAIL_LIBS}
|
|
)
|
|
|
|
install(
|
|
TARGETS kmail
|
|
DESTINATION ${KDE4_BIN_INSTALL_DIR}
|
|
)
|
|
|
|
install(
|
|
PROGRAMS kmail.desktop
|
|
DESTINATION ${KDE4_XDG_APPS_INSTALL_DIR}
|
|
)
|