diff options
author | Richard van der Hoff <richard@matrix.org> | 2016-05-24 16:28:14 +0100 |
---|---|---|
committer | Richard van der Hoff <richard@matrix.org> | 2016-05-24 16:28:14 +0100 |
commit | 8d31f42b1e5fd198918166edeec61f57059c6db9 (patch) | |
tree | a9f2ddd30a3d33c1f63fa7ec3b23211833fe6d95 | |
parent | 2e7800cf650197f4b8998ef8ac24d08daa316a2f (diff) |
Build the tests with -g
think this got lost when mark added separate release/debug builds
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -51,7 +51,7 @@ $(DEBUG_OBJECTS): CXXFLAGS += $(DEBUG_OPTIMIZE_FLAGS) $(DEBUG_TARGET): LDFLAGS += $(DEBUG_OPTIMIZE_FLAGS) $(TEST_BINARIES): CPPFLAGS += -Itests/include -$(TEST_BINARIES): LDFLAGS += $(TEST_OPTIMIZE_FLAGS) -L$(BUILD_DIR) +$(TEST_BINARIES): LDFLAGS += $(DEBUG_OPTIMIZE_FLAGS) -L$(BUILD_DIR) $(JS_OBJECTS): CFLAGS += $(JS_OPTIMIZE_FLAGS) $(JS_OBJECTS): CXXFLAGS += $(JS_OPTIMIZE_FLAGS) |