~dandrader/unity8/multiInstanceApp

« back to all changes in this revision

Viewing changes to CMakeLists.txt

  • Committer: Albert Astals Cid
  • Date: 2015-07-15 15:07:19 UTC
  • mto: (2004.2.7 new_and_old_audio_role)
  • mto: This revision was merged to the branch mainline in revision 2027.
  • Revision ID: albert.astals@canonical.com-20150715150719-6i15g11ap6um6b7r
Move to importing QtQuick 2.4 & friends

This means we obviously require Qt 5.4 or greater, we had for a while
but make it official now

Show diffs side-by-side

added added

removed removed

Lines of Context:
48
48
                                       ${CMAKE_SOURCE_DIR}/src ${CMAKE_SOURCE_DIR}/tests)
49
49
 
50
50
include(FindPkgConfig)
51
 
find_package(Qt5Core 5.2 REQUIRED)
52
 
find_package(Qt5Qml 5.2 REQUIRED)
53
 
find_package(Qt5Quick 5.2 REQUIRED)
54
 
find_package(Qt5Gui 5.2 REQUIRED)
55
 
find_package(Qt5DBus 5.2 REQUIRED)
56
 
find_package(Qt5Concurrent 5.2 REQUIRED)
57
 
find_package(Qt5Sql 5.2 REQUIRED)
 
51
find_package(Qt5Core 5.4 REQUIRED)
 
52
find_package(Qt5Qml 5.4 REQUIRED)
 
53
find_package(Qt5Quick 5.4 REQUIRED)
 
54
find_package(Qt5Gui 5.4 REQUIRED)
 
55
find_package(Qt5DBus 5.4 REQUIRED)
 
56
find_package(Qt5Concurrent 5.4 REQUIRED)
 
57
find_package(Qt5Sql 5.4 REQUIRED)
58
58
 
59
59
pkg_check_modules(APPLICATION_API REQUIRED unity-shell-application=6)
60
60