aboutsummaryrefslogtreecommitdiff
path: root/unit_tests
diff options
context:
space:
mode:
authorBenoit Germain <benoit.germain@ubisoft.com>2025-03-12 12:07:38 +0100
committerBenoit Germain <benoit.germain@ubisoft.com>2025-03-12 12:07:38 +0100
commit8f3ebb14841e28f8142b81fb646810fff5052ed6 (patch)
treec5d06036203e97ce34ea38aee3365454431d23c3 /unit_tests
parentbd9289acc58b676f228c7fee5766761c1877b414 (diff)
downloadlanes-8f3ebb14841e28f8142b81fb646810fff5052ed6.tar.gz
lanes-8f3ebb14841e28f8142b81fb646810fff5052ed6.tar.bz2
lanes-8f3ebb14841e28f8142b81fb646810fff5052ed6.zip
Fix unit tests makefile
* UnitTest.exe is not a shared library
Diffstat (limited to 'unit_tests')
-rw-r--r--unit_tests/Makefile2
1 files changed, 1 insertions, 1 deletions
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
23# Note: Don't put $(LUA_LIBS) ahead of $^; MSYS will not like that (I think) 23# Note: Don't put $(LUA_LIBS) ahead of $^; MSYS will not like that (I think)
24# 24#
25$(_UNITTEST_TARGET): $(OBJ) 25$(_UNITTEST_TARGET): $(OBJ)
26 $(CC) $(LIBFLAG) $^ $(LIBS) $(LUA_LIBS) -o $@ 26 $(CC) $^ $(LIBS) $(LUA_LIBS) -o $@
27 27
28clean: 28clean:
29 -rm -rf $(_UNITTEST_TARGET) *.o *.map 29 -rm -rf $(_UNITTEST_TARGET) *.o *.map