mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-23 18:32:51 +00:00
15 lines
488 B
CMake
15 lines
488 B
CMake
project(asapcat)
|
|
|
|
#set( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${_ENABLE_EXCEPTIONS}" )
|
|
set(AKONADI_PROTOCOLINTERNALS_LIBS ${akonadiprotocolinternals_LIB_DEPENDS} akonadiprotocolinternals)
|
|
|
|
set(asapcat_srcs
|
|
main.cpp
|
|
session.cpp
|
|
)
|
|
|
|
add_executable(asapcat ${asapcat_srcs})
|
|
|
|
target_link_libraries(asapcat akonadi_shared ${QT_QTCORE_LIBRARY} ${QT_QTNETWORK_LIBRARY} ${AKONADI_PROTOCOLINTERNALS_LIBS} ${Boost_PROGRAM_OPTIONS_LIBRARY})
|
|
|
|
install(TARGETS asapcat DESTINATION ${BIN_INSTALL_DIR})
|