~ubuntu-branches/ubuntu/vivid/emscripten/vivid

« back to all changes in this revision

Viewing changes to tests/poppler/cmake/modules/PopplerDefaults.cmake

  • Committer: Package Import Robot
  • Author(s): Sylvestre Ledru
  • Date: 2013-05-02 13:11:51 UTC
  • Revision ID: package-import@ubuntu.com-20130502131151-q8dvteqr1ef2x7xz
Tags: upstream-1.4.1~20130504~adb56cb
ImportĀ upstreamĀ versionĀ 1.4.1~20130504~adb56cb

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# enable the testing facilities
 
2
enable_testing()
 
3
 
 
4
# put the include directories of the sources before other include paths
 
5
# (eg, system includes)
 
6
set(CMAKE_INCLUDE_DIRECTORIES_PROJECT_BEFORE ON)
 
7
 
 
8
# colored output
 
9
set(CMAKE_COLOR_MAKEFILE ON)
 
10
 
 
11
# CMake policy #0002: we can have multiple targets with the same name (for the unit tests)
 
12
cmake_policy(SET CMP0002 OLD)
 
13
# CMake policy #0011 (>= 2.6.3): make policy changes (as done here) taking effect for all the tree
 
14
if(POLICY CMP0011)
 
15
    cmake_policy(SET CMP0011 OLD)
 
16
endif(POLICY CMP0011)
 
17