~feng-kylin/ubuntu-settings-components/addSupportToOpenUrlInIndicator

« back to all changes in this revision

Viewing changes to tests/uqmlscene/CMakeLists.txt

  • Committer: Nick Dedekind
  • Date: 2014-07-31 16:55:11 UTC
  • mfrom: (75.1.1 ubuntu-settings-components)
  • mto: This revision was merged to the branch mainline in revision 78.
  • Revision ID: nicholas.dedekind@gmail.com-20140731165511-ju4rw3ule5di0xle
merged uqmlscene branch

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
add_executable(uqmlscene
2
 
    ${shellapplication_MOC_SRCS}
3
 
    main.cpp
4
 
    MouseTouchAdaptor.cpp
5
 
    )
6
 
 
7
 
qt5_use_modules(uqmlscene Qml Quick Test)
8
 
pkg_check_modules(XCB REQUIRED xcb)
9
 
 
10
 
include_directories(
11
 
    ${Qt5Gui_PRIVATE_INCLUDE_DIRS}
12
 
)
13
 
 
14
 
if (NOT "${XCB_INCLUDE_DIRS}" STREQUAL "")
15
 
    set_target_properties(uqmlscene PROPERTIES INCLUDE_DIRECTORIES ${XCB_INCLUDE_DIRS})
16
 
endif()
17
 
 
18
 
target_link_libraries(uqmlscene
19
 
    ${Qt5Qml_LIBRARIES}
20
 
    ${Qt5Quick_LIBRARIES}
21
 
    ${XCB_LDFLAGS}
22
 
    )