Commit 5ce8d87b by Maarten L. Hekkelman

add debug flag

parent f815b858
......@@ -44,7 +44,7 @@ DEBUG = @DEBUG@
ifeq "$(DEBUG)" "1"
DEFINES += DEBUG
CXXFLAGS += -g -O0
CXXFLAGS += -g -O0 -fstandalone-debug
LDFLAGS += -g
else
CXXFLAGS += -O3
......
......@@ -1276,6 +1276,7 @@ bool Monomer::isComplete() const
else if (a.labelAtomID() == "C") seen |= 2;
else if (a.labelAtomID() == "N") seen |= 4;
else if (a.labelAtomID() == "O") seen |= 8;
// else if (a.labelAtomID() == "OXT") seen |= 16;
}
return seen == 15;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment