~ubuntu-branches/ubuntu/vivid/akonadi/vivid

« back to all changes in this revision

Viewing changes to server/akonadictl/CMakeLists.txt

  • Committer: Package Import Robot
  • Author(s): Rohan Garg, Rohan Garg, Philip Muškovac
  • Date: 2013-06-13 08:46:15 UTC
  • mfrom: (1.1.42)
  • Revision ID: package-import@ubuntu.com-20130613084615-e37v5pdoe2p2xu9d
Tags: 1.9.80-0ubuntu1
[ Rohan Garg ]
* New upstream release
  - Update symbols
  - Install asapcat with akonadi-server for now
  - Install notificationmessagev2_p.h with -dev package
  - Refresh disable_dbus_requiring_tests.diff

[ Philip Muškovac ]
* libkonadi-dev needs to depend on akonadi-server for the dbus service 

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
 
2
 
set( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${_ENABLE_EXCEPTIONS}" )
 
1
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${_ENABLE_EXCEPTIONS}")
3
2
include_directories(${CMAKE_CURRENT_BINARY_DIR})
 
3
 
4
4
########### next target ###############
5
5
 
6
 
set( akonadictl_SRCS
 
6
set(akonadictl_SRCS
7
7
  akonadistarter.cpp
8
8
  main.cpp
9
9
)
10
10
 
11
 
qt4_add_dbus_interfaces( akonadictl_SRCS
 
11
qt4_add_dbus_interfaces(akonadictl_SRCS
12
12
  ${Akonadi_SOURCE_DIR}/interfaces/org.freedesktop.Akonadi.ControlManager.xml
13
13
)
14
14
 
17
17
target_link_libraries(akonadictl akonadi_shared ${QT_QTCORE_LIBRARY} ${QT_QTDBUS_LIBRARY} ${AKONADI_PROTOCOLINTERNALS_LIBS} ${AKONADI_SYSTEM_LIBS})
18
18
 
19
19
if(NOT WINCE)
20
 
    target_link_libraries(akonadictl ${Boost_PROGRAM_OPTIONS_LIBRARY})
21
 
endif(NOT WINCE)
 
20
  target_link_libraries(akonadictl ${Boost_PROGRAM_OPTIONS_LIBRARY})
 
21
endif()
22
22
 
23
23
install(TARGETS akonadictl DESTINATION ${BIN_INSTALL_DIR})