diff options
author | Fred Sundvik <fsundvik@gmail.com> | 2017-06-16 20:21:28 +0300 |
---|---|---|
committer | Fred Sundvik <fsundvik@gmail.com> | 2017-06-18 21:08:23 +0300 |
commit | 30f22d450da19c65584e6deb8515a1fa5b074e07 (patch) | |
tree | 2838fe9781c2f5ccf4db339c4752ce345714fada /build_test.mk | |
parent | 621ae42a6cb9f96b8c02a0094b36daf125c4e6ca (diff) | |
download | qmk_firmware-30f22d450da19c65584e6deb8515a1fa5b074e07.tar.gz qmk_firmware-30f22d450da19c65584e6deb8515a1fa5b074e07.zip |
Add basic infrastrucure for building full tests
Diffstat (limited to 'build_test.mk')
-rw-r--r-- | build_test.mk | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/build_test.mk b/build_test.mk index ee15a45726..32bb4d8078 100644 --- a/build_test.mk +++ b/build_test.mk @@ -43,6 +43,9 @@ VPATH += $(COMMON_VPATH) include $(TMK_PATH)/common.mk include $(QUANTUM_PATH)/serial_link/tests/rules.mk +ifneq ($(filter $(FULL_TESTS),$(TEST)),) +include build_full_test.mk +endif $(TEST_OBJ)/$(TEST)_SRC := $($(TEST)_SRC) $(TEST_OBJ)/$(TEST)_INC := $($(TEST)_INC) $(VPATH) $(GTEST_INC) |