~renatofilho/address-book-app/fix-1200397

« back to all changes in this revision

Viewing changes to CMakeLists.txt

  • Committer: Tarmac
  • Author(s): Renato Araujo Oliveira Filho
  • Date: 2013-07-09 19:46:49 UTC
  • mfrom: (4.1.3 autopilot)
  • Revision ID: tarmac-20130709194649-569bvf3vdf2gi1fa
Initial structure for autopilot.

Approved by Omer Akram, PS Jenkins bot.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
project(address-book-app)
2
2
cmake_minimum_required(VERSION 2.8.9)
 
3
set(CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake/modules)
3
4
 
4
5
# Find includes in corresponding build directories
5
6
set(CMAKE_INCLUDE_CURRENT_DIR ON)
21
22
# (regarding syntax consistency, see http://pad.lv/1181187)
22
23
set (GETTEXT_PACKAGE "address-book-app")
23
24
 
 
25
# Tests
 
26
enable_testing()
 
27
 
24
28
add_subdirectory(data)
25
29
add_subdirectory(src)
26
30
add_subdirectory(po)
 
31
add_subdirectory(tests)
27
32
 
28
33
# uninstall target
29
34
configure_file("${CMAKE_CURRENT_SOURCE_DIR}/cmake_uninstall.cmake.in"