Skip to content

Commit 7ec6ea8

Browse files
committed
Make C++ EOS functionality opt-in for now
1 parent 8e8597c commit 7ec6ea8

File tree

9 files changed

+18
-0
lines changed

9 files changed

+18
-0
lines changed

EOS/breakout/Make.package

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
F90EXE_sources += actual_eos.F90
22

3+
ifeq ($(USE_CXX_EOS),TRUE)
34
CEXE_headers += actual_eos_data.H
45
CEXE_sources += actual_eos_data.cpp
56
CEXE_headers += actual_eos.H
7+
endif

EOS/gamma_law/Make.package

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
F90EXE_sources += gamma_law.F90
22

3+
ifeq ($(USE_CXX_EOS),TRUE)
34
CEXE_headers += actual_eos_data.H
45
CEXE_sources += actual_eos_data.cpp
56
CEXE_headers += actual_eos.H
7+
endif

EOS/gamma_law_general/Make.package

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
F90EXE_sources += actual_eos.F90
22

3+
ifeq ($(USE_CXX_EOS),TRUE)
34
CEXE_headers += actual_eos.H
5+
endif

EOS/helmholtz/Make.package

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
F90EXE_sources += actual_eos.F90
22

3+
ifeq ($(USE_CXX_EOS),TRUE)
34
CEXE_headers += actual_eos_data.H
45
CEXE_sources += actual_eos_data.cpp
56
CEXE_headers += actual_eos.H
7+
endif

EOS/multigamma/Make.package

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
F90EXE_sources += actual_eos.F90
22

3+
ifeq ($(USE_CXX_EOS),TRUE)
34
CEXE_headers += actual_eos_data.H
45
CEXE_sources += actual_eos_data.cpp
56
CEXE_headers += actual_eos.H
7+
endif

EOS/polytrope/Make.package

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
F90EXE_sources += actual_eos.F90
22

3+
ifeq ($(USE_CXX_EOS),TRUE)
34
CEXE_headers += actual_eos_data.H
45
CEXE_sources += actual_eos_data.cpp
56
CEXE_headers += actual_eos.H
7+
endif

EOS/rad_power_law/Make.package

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
F90EXE_sources += rad_power_law.F90
22

3+
ifeq ($(USE_CXX_EOS),TRUE)
34
CEXE_headers += actual_eos.H
5+
endif

EOS/ztwd/Make.package

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
F90EXE_sources += actual_eos.F90
22

3+
ifeq ($(USE_CXX_EOS),TRUE)
34
CEXE_headers += actual_eos.H
5+
endif

unit_test/test_eos_C/GNUmakefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ EBASE = main
1616

1717
USE_EXTRA_THERMO = TRUE
1818

19+
USE_CXX_EOS = TRUE
20+
1921
# define the location of the CASTRO top directory
2022
MICROPHYSICS_HOME := ../..
2123

0 commit comments

Comments
 (0)