From 967be9e750221ab2ab783f95df79bb26d290a45e Mon Sep 17 00:00:00 2001 From: Martial Simon Date: Mon, 15 Sep 2025 01:07:58 +0200 Subject: add: added projects --- tiger-compiler/tests/Makefile.am | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 tiger-compiler/tests/Makefile.am (limited to 'tiger-compiler/tests/Makefile.am') diff --git a/tiger-compiler/tests/Makefile.am b/tiger-compiler/tests/Makefile.am new file mode 100644 index 0000000..9af3f2b --- /dev/null +++ b/tiger-compiler/tests/Makefile.am @@ -0,0 +1,23 @@ +check_PROGRAMS = check_unit + +check_unit_CPPFLAGS = \ + -I$(top_srcdir)/lib \ + -I$(top_srcdir)/src + +check_unit_CXXFLAGS = \ + -Wall \ + -Wextra \ + -pedantic \ + -std=c++20 + +check_unit_LDFLAGS = \ + -lcriterion + +check_unit_SOURCES = + +include unit/local.am + +check_unit_LDADD = $(top_srcdir)/src/libtc.la + +check-local: + ./check_unit -- cgit v1.2.3