From 8f3ebb14841e28f8142b81fb646810fff5052ed6 Mon Sep 17 00:00:00 2001 From: Benoit Germain Date: Wed, 12 Mar 2025 12:07:38 +0100 Subject: Fix unit tests makefile * UnitTest.exe is not a shared library --- unit_tests/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'unit_tests') diff --git a/unit_tests/Makefile b/unit_tests/Makefile index 9cc192b..67333f6 100644 --- a/unit_tests/Makefile +++ b/unit_tests/Makefile @@ -23,7 +23,7 @@ _pch.hpp.gch: _pch.hpp # Note: Don't put $(LUA_LIBS) ahead of $^; MSYS will not like that (I think) # $(_UNITTEST_TARGET): $(OBJ) - $(CC) $(LIBFLAG) $^ $(LIBS) $(LUA_LIBS) -o $@ + $(CC) $^ $(LIBS) $(LUA_LIBS) -o $@ clean: -rm -rf $(_UNITTEST_TARGET) *.o *.map -- cgit v1.2.3-55-g6feb