~ci-train-bot/ubuntu-settings-components/ubuntu-settings-components-ubuntu-zesty-2106

« back to all changes in this revision

Viewing changes to tests/uqmlscene/CMakeLists.txt

  • Committer: Nick Dedekind
  • Date: 2013-09-23 17:12:24 UTC
  • mto: This revision was merged to the branch mainline in revision 50.
  • Revision ID: nicholas.dedekind@gmail.com-20130923171224-et73jjusdkcvnfik
Moved SettingsComponents to Ubuntu/SettingsComponents. rerigged test framework.

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
if (NOT "${XCB_INCLUDE_DIRS}" STREQUAL "")
 
11
    set_target_properties(uqmlscene PROPERTIES INCLUDE_DIRECTORIES ${XCB_INCLUDE_DIRS})
 
12
endif()
 
13
 
 
14
target_link_libraries(uqmlscene
 
15
    ${Qt5Qml_LIBRARIES}
 
16
    ${Qt5Quick_LIBRARIES}
 
17
    ${XCB_LDFLAGS}
 
18
    )