~zorba-coders/zorba/1189803-geoproj-module

« back to all changes in this revision

Viewing changes to CMakeLists.txt

  • Committer: Juan Zacarias
  • Date: 2012-08-07 19:49:24 UTC
  • Revision ID: juan457@gmail.com-20120807194924-w8pmqsrf510fq3yv
Tags: zorba-2.8, zorba-2.9
RemovedĀ geosĀ module

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
 
15
15
CMAKE_MINIMUM_REQUIRED(VERSION 2.6)
16
16
 
17
 
PROJECT (zorba_geo_module)
 
17
PROJECT (zorba_geoproj_module)
18
18
ENABLE_TESTING ()
19
19
INCLUDE (CTest)
20
20
 
21
 
IF (WIN32)
22
 
  # On Windows we use proxy modules that try to guess first the location
23
 
  # of the required third party libraries. This will search in order in:
24
 
  # 1. the path pointed by ZORBA_THIRD_PARTY_REQUIREMENTS
25
 
  # 2. the Program Files directory available on the users computer
26
 
  # 3. the PATH environment variable
27
 
  # The logic is implemented by the macros in the ProxyFindModule.cmake module.
28
 
  LIST (APPEND CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/cmake_modules/Windows")
29
 
ENDIF (WIN32)
30
 
LIST (APPEND CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/cmake_modules")
31
 
 
32
21
FIND_PACKAGE (Zorba REQUIRED HINTS "${ZORBA_BUILD_DIR}")
33
22
INCLUDE ("${Zorba_USE_FILE}")
34
23