Added DEBUG_MODE flag to compilation line.
This commit is contained in:
parent
51156a44ca
commit
36993a1246
2 changed files with 3 additions and 3 deletions
|
|
@ -78,7 +78,7 @@ int main(int argc, char **argv)
|
|||
moll[1] += sum;
|
||||
|
||||
HMW->setState_TPM(Temp, OneAtm, moll);
|
||||
#ifdef DEBUG_HKM
|
||||
#ifdef DEBUG_MODE
|
||||
HMW->m_debugCalc = true;
|
||||
#endif
|
||||
printf(" Temperature = %g K\n", Temp);
|
||||
|
|
|
|||
|
|
@ -38,9 +38,9 @@ CXX = @CXX@
|
|||
|
||||
# C++ compile flags
|
||||
ifeq ($(src_dir_tree), 1)
|
||||
CXX_FLAGS = -DSRCDIRTREE @CXXFLAGS@
|
||||
CXX_FLAGS = -DSRCDIRTREE @CXXFLAGS@ -DDEBUG_MODE
|
||||
else
|
||||
CXX_FLAGS = @CXXFLAGS@
|
||||
CXX_FLAGS = @CXXFLAGS@ -DDEBUG_MODE
|
||||
endif
|
||||
|
||||
# Ending C++ linking libraries
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue