mirror of
https://github.com/OPM/ResInsight.git
synced 2025-01-26 00:06:49 -06:00
102 lines
3.9 KiB
CMake
102 lines
3.9 KiB
CMake
# -*- mode: cmake; tab-width: 2; indent-tabs-mode: t; truncate-lines: t; compile-command: "cmake -Wdev" -*-
|
|
# vim: set filetype=cmake autoindent tabstop=2 shiftwidth=2 noexpandtab softtabstop=2 nowrap:
|
|
|
|
###########################################################################
|
|
# #
|
|
# Note: The bulk of the build system is located in the cmake/ directory. #
|
|
# This file only contains the specializations for this particular #
|
|
# project. Most likely you are interested in editing one of these #
|
|
# files instead: #
|
|
# #
|
|
# dune.module Name and version number #
|
|
# CMakeLists_files.cmake Path of source files #
|
|
# cmake/Modules/${project}-prereqs.cmake Dependencies #
|
|
# #
|
|
###########################################################################
|
|
|
|
cmake_minimum_required (VERSION 2.8)
|
|
|
|
# additional search modules
|
|
set(OPM_COMMON_ROOT "" CACHE PATH "Root directory containing OPM related cmake modules")
|
|
option(SIBLING_SEARCH "Search for other modules in sibling directories?" ON)
|
|
|
|
if (NOT OPM_COMMON_ROOT)
|
|
find_package(opm-common QUIET)
|
|
endif()
|
|
|
|
if (opm-common_FOUND)
|
|
include(OpmInit)
|
|
else()
|
|
unset(opm-common_FOUND)
|
|
|
|
if (NOT OPM_COMMON_ROOT AND SIBLING_SEARCH)
|
|
set(OPM_COMMON_ROOT ${PROJECT_SOURCE_DIR}/../opm-common)
|
|
endif()
|
|
|
|
if (OPM_COMMON_ROOT)
|
|
list(APPEND CMAKE_MODULE_PATH "${OPM_COMMON_ROOT}/cmake/Modules")
|
|
include (OpmInit OPTIONAL RESULT_VARIABLE OPM_INIT)
|
|
set(OPM_MACROS_ROOT ${OPM_COMMON_ROOT})
|
|
endif()
|
|
|
|
if (NOT OPM_INIT)
|
|
message("" )
|
|
message(" /---------------------------------------------------------------------------------\\")
|
|
message(" | Could not locate the opm build macros. The opm build macros |")
|
|
message(" | are in a separate repository - instructions to proceed: |")
|
|
message(" | |")
|
|
message(" | 1. Clone the repository: git clone git@github.com:OPM/opm-common.git |")
|
|
message(" | |")
|
|
message(" | 2. Run cmake in the current project with -DOPM_COMMON_ROOT=<path>/opm-common |")
|
|
message(" | |")
|
|
message(" \\---------------------------------------------------------------------------------/")
|
|
message("" )
|
|
message(FATAL_ERROR "Could not find OPM Macros")
|
|
endif()
|
|
endif()
|
|
|
|
# not the same location as most of the other projects; this hook overrides
|
|
macro (dir_hook)
|
|
endmacro (dir_hook)
|
|
|
|
# Look for the opm-data repository; if found the variable
|
|
# HAVE_OPM_DATA will be set to true.
|
|
include (Findopm-data)
|
|
|
|
# list of prerequisites for this particular project; this is in a
|
|
# separate file (in cmake/Modules sub-directory) because it is shared
|
|
# with the find module
|
|
include (${project}-prereqs)
|
|
|
|
# read the list of components from this file (in the project directory);
|
|
# it should set various lists with the names of the files to include
|
|
include (CMakeLists_files.cmake)
|
|
|
|
macro (config_hook)
|
|
endmacro (config_hook)
|
|
|
|
macro (prereqs_hook)
|
|
endmacro (prereqs_hook)
|
|
|
|
macro (sources_hook)
|
|
endmacro (sources_hook)
|
|
|
|
macro (fortran_hook)
|
|
endmacro (fortran_hook)
|
|
|
|
macro (files_hook)
|
|
endmacro (files_hook)
|
|
|
|
macro (tests_hook)
|
|
endmacro (tests_hook)
|
|
|
|
macro (install_hook)
|
|
endmacro (install_hook)
|
|
|
|
# all setup common to the OPM library modules is done here
|
|
include (OpmLibMain)
|
|
|
|
if (HAVE_OPM_DATA)
|
|
include (${CMAKE_CURRENT_SOURCE_DIR}/AcceptanceTests.cmake)
|
|
endif()
|