Common components for OPM, in particular build system (cmake).
Go to file
Atgeirr Flø Rasmussen a37625b2cf Use non-const string type in map.
Using const string as key type instead of plain string fails with libc++,
the standard library implementation used by clang. The libc++ implementation
assumes that map keys can be copied, and the standard requires map keys to be
copyable.

Using const string as a value also fails with clang, I am not 100% sure why.
It does severely restrict how you can interact with the container, and seems to
make it noncopyable. The error is reported from DynamicState<GroupTree>::update(),
the std::fill() call.
2018-10-08 11:02:22 +02:00
cmake Merge pull request #500 from akva2/bash_completion 2018-09-25 12:32:03 +02:00
debian Bump versions 2018-10-02 15:43:01 +02:00
docs typo 2015-06-18 12:06:38 +02:00
etc added: cmake glue for adding bash tab completion for an installed product 2018-09-25 12:31:11 +02:00
examples Add option to ignore extra keywords in the regresstion testing 2018-09-11 13:34:51 +02:00
external/cjson changed: switch to the shared opm build system 2018-02-12 13:36:49 +01:00
jenkins fixed: fail build in jenkins scripts if installation target fails 2018-09-25 12:31:11 +02:00
opm Use non-const string type in map. 2018-10-08 11:02:22 +02:00
redhat Bump versions 2018-10-02 15:43:01 +02:00
src/opm Use non-const string type in map. 2018-10-08 11:02:22 +02:00
tests Corrected merge conflicts with upstream master 2018-09-19 16:02:17 +02:00
.gitignore Import opm-output 2018-03-05 10:30:59 +01:00
changelog.md Changelog December 2016 2017-01-03 10:48:10 +01:00
CMakeLists_files.cmake Aggregate Connection Data: Use Named Indices 2018-09-19 16:02:15 +02:00
CMakeLists.txt added: cmake glue for adding bash tab completion for an installed product 2018-09-25 12:31:11 +02:00
CopyHeaders.cmake changed: use a two-tiered process for code gen 2018-06-18 10:07:52 +02:00
dune.module Bump versions 2018-10-02 15:43:01 +02:00
ExtraTests.cmake Remove stale test 2018-06-20 09:27:02 +02:00
GenerateKeywords.cmake changed: use a two-tiered process for code gen 2018-06-18 10:07:52 +02:00
LICENSE Initial commit 2015-03-18 01:59:50 -05:00
opm-common-prereqs.cmake Rephrase comment into more proper English 2018-07-10 15:57:10 +02:00
README.md remove travis build status from README.md 2018-01-04 12:07:46 +01:00

opm-common

Contains common components used throughout all of OPM, in particular CMake modules for the build system.