aboutsummaryrefslogtreecommitdiff
path: root/build_full_test.mk
diff options
context:
space:
mode:
Diffstat (limited to 'build_full_test.mk')
-rw-r--r--build_full_test.mk23
1 files changed, 10 insertions, 13 deletions
diff --git a/build_full_test.mk b/build_full_test.mk
index 4cd1ac61b..f8030cb06 100644
--- a/build_full_test.mk
+++ b/build_full_test.mk
@@ -13,24 +13,21 @@
13# You should have received a copy of the GNU General Public License 13# You should have received a copy of the GNU General Public License
14# along with this program. If not, see <http://www.gnu.org/licenses/>. 14# along with this program. If not, see <http://www.gnu.org/licenses/>.
15 15
16$(TEST)_INC := \ 16#include $(TMK_PATH)/protocol.mk
17 tests\test_common\common_config.h
18 17
19$(TEST)_SRC := \ 18TEST_PATH=tests/$(TEST)
19
20$(TEST)_SRC= \
21 $(TEST_PATH)/keymap.c \
20 $(TMK_COMMON_SRC) \ 22 $(TMK_COMMON_SRC) \
21 $(QUANTUM_SRC) \ 23 $(QUANTUM_SRC) \
22 $(SRC) \ 24 $(SRC) \
23 tests/test_common/keymap.c \
24 tests/test_common/matrix.c \ 25 tests/test_common/matrix.c \
25 tests/test_common/test_driver.cpp \ 26 tests/test_common/test_driver.cpp \
26 tests/test_common/keyboard_report_util.cpp \ 27 tests/test_common/keyboard_report_util.cpp \
27 tests/test_common/test_fixture.cpp \ 28 tests/test_common/test_fixture.cpp
28 tests/test_common/test_keymap_key.cpp \ 29$(TEST)_SRC += $(patsubst $(ROOTDIR)/%,%,$(wildcard $(TEST_PATH)/*.cpp))
29 tests/test_common/test_logger.cpp \
30 $(patsubst $(ROOTDIR)/%,%,$(wildcard $(TEST_PATH)/*.cpp))
31
32$(TEST)_DEFS := $(TMK_COMMON_DEFS) $(OPT_DEFS)
33
34$(TEST)_CONFIG := $(TEST_PATH)/config.h
35 30
36VPATH += $(TOP_DIR)/tests/test_common \ No newline at end of file 31$(TEST)_DEFS=$(TMK_COMMON_DEFS) $(OPT_DEFS)
32$(TEST)_CONFIG=$(TEST_PATH)/config.h
33VPATH+=$(TOP_DIR)/tests/test_common