2015-09-08 10:35:01 +02: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
|
2016-11-22 14:44:23 +01:00
|
|
|
"HAS_ATTRIBUTE_UNUSED")
|
2015-09-08 10:35:01 +02:00
|
|
|
|
|
|
|
|
# dependencies
|
|
|
|
|
set (opm-common_DEPS
|
|
|
|
|
# compile with C99 support if available
|
|
|
|
|
"C99"
|
|
|
|
|
# compile with C++0x/11 support if available
|
|
|
|
|
"CXX11Features REQUIRED"
|
|
|
|
|
# various runtime library enhancements
|
2016-01-31 14:08:11 +01:00
|
|
|
"Boost 1.44.0
|
|
|
|
|
COMPONENTS system unit_test_framework REQUIRED"
|
2015-09-08 10:35:01 +02:00
|
|
|
)
|