diff options
author | Benoit Germain <benoit.germain@ubisoft.com> | 2025-03-12 12:07:38 +0100 |
---|---|---|
committer | Benoit Germain <benoit.germain@ubisoft.com> | 2025-03-12 12:07:38 +0100 |
commit | 8f3ebb14841e28f8142b81fb646810fff5052ed6 (patch) | |
tree | c5d06036203e97ce34ea38aee3365454431d23c3 | |
parent | bd9289acc58b676f228c7fee5766761c1877b414 (diff) | |
download | lanes-8f3ebb14841e28f8142b81fb646810fff5052ed6.tar.gz lanes-8f3ebb14841e28f8142b81fb646810fff5052ed6.tar.bz2 lanes-8f3ebb14841e28f8142b81fb646810fff5052ed6.zip |
Fix unit tests makefile
* UnitTest.exe is not a shared library
-rw-r--r-- | unit_tests/Makefile | 2 |
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 | ||
28 | clean: | 28 | clean: |
29 | -rm -rf $(_UNITTEST_TARGET) *.o *.map | 29 | -rm -rf $(_UNITTEST_TARGET) *.o *.map |