mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
ERT 80650d05d49b419ec74ba316312313dfc6ba0875 opm-common e7db252f3e310a04718f315e6cdb9d6c428c5762 opm-parser 817722b99baa62cc63a5f859cc90b951f0b0636e
71 lines
2.5 KiB
CMake
71 lines
2.5 KiB
CMake
# This file sets up five lists:
|
|
# MAIN_SOURCE_FILES List of compilation units which will be included in
|
|
# the library. If it isn't on this list, it won't be
|
|
# part of the library. Please try to keep it sorted to
|
|
# maintain sanity.
|
|
#
|
|
# TEST_SOURCE_FILES List of programs that will be run as unit tests.
|
|
#
|
|
# TEST_DATA_FILES Files from the source three that should be made
|
|
# available in the corresponding location in the build
|
|
# tree in order to run tests there.
|
|
#
|
|
# EXAMPLE_SOURCE_FILES Other programs that will be compiled as part of the
|
|
# build, but which is not part of the library nor is
|
|
# run as tests.
|
|
#
|
|
# PUBLIC_HEADER_FILES List of public header files that should be
|
|
# distributed together with the library. The source
|
|
# files can of course include other files than these;
|
|
# you should only add to this list if the *user* of
|
|
# the library needs it.
|
|
|
|
list (APPEND MAIN_SOURCE_FILES
|
|
opm/common/data/SimulationDataContainer.cpp
|
|
opm/common/OpmLog/CounterLog.cpp
|
|
opm/common/OpmLog/EclipsePRTLog.cpp
|
|
opm/common/OpmLog/LogBackend.cpp
|
|
opm/common/OpmLog/Logger.cpp
|
|
opm/common/OpmLog/LogUtil.cpp
|
|
opm/common/OpmLog/OpmLog.cpp
|
|
opm/common/OpmLog/StreamLog.cpp
|
|
opm/common/OpmLog/TimerLog.cpp
|
|
)
|
|
|
|
list (APPEND TEST_SOURCE_FILES
|
|
tests/test_SimulationDataContainer.cpp
|
|
tests/test_cmp.cpp
|
|
tests/test_OpmLog.cpp
|
|
tests/test_messagelimiter.cpp
|
|
)
|
|
|
|
list (APPEND TEST_DATA_FILES
|
|
)
|
|
|
|
list (APPEND EXAMPLE_SOURCE_FILES
|
|
)
|
|
|
|
# programs listed here will not only be compiled, but also marked for
|
|
# installation
|
|
list (APPEND PROGRAM_SOURCE_FILES
|
|
)
|
|
|
|
|
|
list( APPEND PUBLIC_HEADER_FILES
|
|
opm/common/ErrorMacros.hpp
|
|
opm/common/Exceptions.hpp
|
|
opm/common/data/SimulationDataContainer.hpp
|
|
opm/common/OpmLog/CounterLog.hpp
|
|
opm/common/OpmLog/EclipsePRTLog.hpp
|
|
opm/common/OpmLog/LogBackend.hpp
|
|
opm/common/OpmLog/Logger.hpp
|
|
opm/common/OpmLog/LogUtil.hpp
|
|
opm/common/OpmLog/MessageFormatter.hpp
|
|
opm/common/OpmLog/MessageLimiter.hpp
|
|
opm/common/OpmLog/OpmLog.hpp
|
|
opm/common/OpmLog/StreamLog.hpp
|
|
opm/common/OpmLog/TimerLog.hpp
|
|
opm/common/util/numeric/cmp.hpp
|
|
opm/common/utility/platform_dependent/disable_warnings.h
|
|
opm/common/utility/platform_dependent/reenable_warnings.h)
|