~ted/ubuntu-app-launch/api-sanity-checker

« back to all changes in this revision

Viewing changes to CMakeLists.txt

  • Committer: Bileto Bot
  • Author(s): Ted Gould
  • Date: 2016-08-17 15:24:09 UTC
  • mfrom: (237.2.10 abi-compliance)
  • Revision ID: ci-train-bot@canonical.com-20160817152409-svht19brkurguja0
Add test for abi compatibility (LP: #1609565)

Approved by: unity-api-1-bot

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
project(ubuntu-app-launch C CXX)
2
2
cmake_minimum_required(VERSION 2.8.9)
3
3
 
 
4
##########################
 
5
# Version Info
 
6
##########################
 
7
 
 
8
set(API_VERSION 2)
 
9
set(ABI_VERSION 2)
 
10
 
 
11
##########################
 
12
# Options
 
13
##########################
 
14
 
4
15
option (enable_tests "Build tests" ON)
5
16
 
6
17
set(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake" "${CMAKE_MODULE_PATH}")
7
18
 
8
19
set(PACKAGE ${CMAKE_PROJECT_NAME})
9
20
 
 
21
##########################
 
22
# Dependent Packages
 
23
##########################
 
24
 
10
25
find_package(PkgConfig REQUIRED)
11
26
find_package(GObjectIntrospection REQUIRED)
12
27
include(GNUInstallDirs)