~ubuntu-branches/ubuntu/saucy/address-book-app/saucy-proposed

« back to all changes in this revision

Viewing changes to src/app/CMakeLists.txt

  • Committer: Package Import Robot
  • Author(s): Ubuntu daily release, Tiago Salem Herrmann, Renato Araujo Oliveira Filho, Ubuntu daily release
  • Date: 2013-10-11 08:47:20 UTC
  • mfrom: (1.1.21)
  • Revision ID: package-import@ubuntu.com-20131011084720-a4c2g2x2k1j5c6l4
Tags: 0.2+13.10.20131011-0ubuntu1
[ Tiago Salem Herrmann ]
* Use url decoding before using values. (LP: #1234234)

[ Renato Araujo Oliveira Filho ]
* Ask for confirmation during the contact removal. (LP: #1213046)
* Removed trick to make the font gray when text does not have focus.
  (LP: #1228227)
* Fixed save avatar function.
* Initial implementation for UriHandler. (LP: #1230404)
* Added preview image.

[ Ubuntu daily release ]
* Automatic snapshot from revision 101

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
set(ADDRESS_BOOK_APP_SRCS
11
11
    addressbookapp.h
12
12
    addressbookapp.cpp
13
 
    addressbookappdbus.h
14
 
    addressbookappdbus.cpp
15
13
    imagescalethread.h
16
14
    imagescalethread.cpp
17
15
    main.cpp
18
16
)
19
17
 
20
 
qt5_add_dbus_adaptor(ADDRESS_BOOK_APP_SRCS AddressBookApp.xml addressbookappdbus.h  AddressBookAppDBus)
21
 
 
22
18
add_executable(${ADDRESS_BOOK_APP_BIN}
23
19
    ${ADDRESS_BOOK_APP_SRCS}
24
20
)
25
21
 
26
 
qt5_use_modules(${ADDRESS_BOOK_APP_BIN} Gui Core Qml Quick DBus)
 
22
qt5_use_modules(${ADDRESS_BOOK_APP_BIN} Gui Core Qml Quick)
27
23
 
28
24
install(TARGETS ${ADDRESS_BOOK_APP_BIN}
29
25
    RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
30
26
)
31
27
 
32
 
configure_file(com.canonical.AddressBookApp.service.in com.canonical.AddressBookApp.service)
33
 
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/com.canonical.AddressBookApp.service DESTINATION share/dbus-1/services)