Skip to content

Commit

Permalink
Changed the Makefile to explicitly link the static ZLib
Browse files Browse the repository at this point in the history
  • Loading branch information
jpt13653903 committed Jan 5, 2024
1 parent 7a756d8 commit f3091fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Engine/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ FORCE:

$(Output): main.cpp main.h $(obj)/libEngine.a ZLib/zlib.h ZLib/libz.a $(Resources)
mkdir -p bin
$(CXX) $(Options) $(Version) $(Includes) $< -s $(Resources) -L$(obj) -lEngine -LZLib -lz -o $@
$(CXX) $(Options) $(Version) $(Includes) $< -s $(Resources) -L$(obj) -lEngine ZLib/libz.a -o $@
#-------------------------------------------------------------------------------

# Libraries
Expand Down

0 comments on commit f3091fc

Please sign in to comment.