~renatofilho/address-book-app/save-state

« back to all changes in this revision

Viewing changes to src/app/CMakeLists.txt

  • Committer: Tarmac
  • Author(s): Renato Araujo Oliveira Filho
  • Date: 2013-12-18 02:46:41 UTC
  • mfrom: (114.1.30 content-hub)
  • Revision ID: tarmac-20131218024641-2o3c5ht5hw6xtepm
Implemented content hub support to export contacts.

Approved by PS Jenkins bot, Bill Filler.

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
 
5
5
include_directories(
6
6
    ${CMAKE_BINARY_DIR}
 
7
    ${CONTENTHUB_INCLUDE_DIRS}
7
8
)
8
9
 
9
 
 
10
10
set(ADDRESS_BOOK_APP_SRCS
11
11
    addressbookapp.h
12
12
    addressbookapp.cpp
 
13
    contentcommunicator.h
 
14
    contentcommunicator.cpp
13
15
    imagescalethread.h
14
16
    imagescalethread.cpp
15
17
    main.cpp
21
23
 
22
24
qt5_use_modules(${ADDRESS_BOOK_APP_BIN} Gui Core Qml Quick)
23
25
 
 
26
target_link_libraries(${ADDRESS_BOOK_APP_BIN}
 
27
    ${CONTENTHUB_LIBRARIES}
 
28
)
 
29
 
24
30
install(TARGETS ${ADDRESS_BOOK_APP_BIN}
25
31
    RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
26
32
)