~ubuntu-branches/ubuntu/wily/mir/wily-proposed

« back to all changes in this revision

Viewing changes to CMakeLists.txt

  • Committer: Package Import Robot
  • Author(s): Alexandros Frantzis
  • Date: 2015-10-08 16:12:19 UTC
  • mto: This revision was merged to the branch mainline in revision 109.
  • Revision ID: package-import@ubuntu.com-20151008161219-emk4a1ys51yy0wjb
Tags: upstream-0.17.0+15.10.20151008.2
ImportĀ upstreamĀ versionĀ 0.17.0+15.10.20151008.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib)
28
28
 
29
29
set(MIR_VERSION_MAJOR 0)
30
 
set(MIR_VERSION_MINOR 16) # This should change at least with every MIRSERVER_ABI
 
30
set(MIR_VERSION_MINOR 17)
31
31
set(MIR_VERSION_PATCH 0)
32
32
 
33
33
add_definitions(-DMIR_VERSION_MAJOR=${MIR_VERSION_MAJOR})
175
175
find_package(LTTngUST REQUIRED)
176
176
pkg_check_modules(UDEV REQUIRED libudev)
177
177
pkg_check_modules(GLIB REQUIRED glib-2.0)
 
178
pkg_check_modules(LIBINPUT REQUIRED libinput)
 
179
pkg_check_modules(NETTLE REQUIRED nettle)
178
180
pkg_check_modules(UUID REQUIRED uuid)
179
181
 
180
182
include_directories (${GLESv2_INCLUDE_DIRS})
243
245
add_custom_target(ptest
244
246
    COMMAND "${CMAKE_SOURCE_DIR}/tools/run_ctests.sh" "--cost-file" "${CMAKE_BINARY_DIR}/ptest_ctest_cost_data.txt" "sh ${CMAKE_BINARY_DIR}/discover_all_tests.sh" "--" "$$ARGS"
245
247
    )
 
248
 
 
249
add_custom_target(release-checks)
 
250
 
 
251
mir_check_no_unreleased_symbols(mirclient release-checks)
 
252
mir_check_no_unreleased_symbols(mircookie release-checks)
 
253
mir_check_no_unreleased_symbols(mirplatform release-checks)
 
254
mir_check_no_unreleased_symbols(mirprotobuf release-checks)
 
255
mir_check_no_unreleased_symbols(mirserver release-checks)