2016-12-08 07:55:01 -06:00
|
|
|
# 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
|
2017-02-09 07:14:02 -06:00
|
|
|
opm/utility/ECLFluxCalc.cpp
|
2016-12-08 07:55:01 -06:00
|
|
|
opm/utility/ECLGraph.cpp
|
2016-12-08 08:19:13 -06:00
|
|
|
opm/utility/ECLResultData.cpp
|
2017-02-09 07:14:02 -06:00
|
|
|
opm/utility/ECLUnitHandling.cpp
|
2016-12-08 07:55:01 -06:00
|
|
|
opm/utility/ECLWellSolution.cpp
|
|
|
|
)
|
|
|
|
|
|
|
|
list (APPEND TEST_SOURCE_FILES
|
2017-02-09 07:14:02 -06:00
|
|
|
tests/test_eclunithandling.cpp
|
2016-12-08 07:55:01 -06:00
|
|
|
)
|
|
|
|
|
|
|
|
list (APPEND EXAMPLE_SOURCE_FILES
|
2017-01-05 07:57:25 -06:00
|
|
|
examples/computeLocalSolutions.cpp
|
2016-12-08 07:55:01 -06:00
|
|
|
examples/computeToFandTracers.cpp
|
2017-01-05 07:57:25 -06:00
|
|
|
examples/computeTracers.cpp
|
2017-03-31 02:13:18 -05:00
|
|
|
examples/extractFromRestart.cpp
|
2017-02-09 07:14:02 -06:00
|
|
|
tests/runAcceptanceTest.cpp
|
|
|
|
tests/runLinearisedCellDataTest.cpp
|
|
|
|
tests/runTransTest.cpp
|
2016-12-08 07:55:01 -06:00
|
|
|
)
|
|
|
|
|
|
|
|
list (APPEND PUBLIC_HEADER_FILES
|
2017-02-09 07:14:02 -06:00
|
|
|
opm/utility/ECLFluxCalc.hpp
|
2016-12-08 07:55:01 -06:00
|
|
|
opm/utility/ECLGraph.hpp
|
2016-12-08 08:19:13 -06:00
|
|
|
opm/utility/ECLResultData.hpp
|
2017-02-09 07:14:02 -06:00
|
|
|
opm/utility/ECLUnitHandling.hpp
|
2016-12-08 07:55:01 -06:00
|
|
|
opm/utility/ECLWellSolution.hpp
|
|
|
|
)
|