2015-09-08 03:35:01 -05:00
|
|
|
# -*- 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:
|
|
|
|
|
|
|
|
# defines that must be present in config.h for our headers
|
|
|
|
set (opm-common_CONFIG_VAR
|
2020-04-14 06:20:52 -05:00
|
|
|
HAVE_OPENMP
|
|
|
|
)
|
2015-09-08 03:35:01 -05:00
|
|
|
|
|
|
|
# dependencies
|
|
|
|
set (opm-common_DEPS
|
|
|
|
# compile with C99 support if available
|
|
|
|
"C99"
|
2020-02-12 02:12:29 -06:00
|
|
|
)
|
|
|
|
|
|
|
|
list(APPEND opm-common_DEPS
|
|
|
|
# various runtime library enhancements
|
|
|
|
"Boost 1.44.0 COMPONENTS system unit_test_framework REQUIRED"
|
2020-04-27 15:40:07 -05:00
|
|
|
"OpenMP"
|
2020-02-12 02:12:29 -06:00
|
|
|
)
|
2018-03-05 05:46:51 -06:00
|
|
|
|
2018-07-10 08:41:58 -05:00
|
|
|
find_package_deps(opm-common)
|