Browse Source

makefile updates to support compression in maps

Image 3 years ago
parent
commit
2b3988642d
2 changed files with 2 additions and 2 deletions
  1. 1 1
      EQ2/source/WorldServer/makefile
  2. 1 1
      EQ2/source/WorldServer/makefile.a64

+ 1 - 1
EQ2/source/WorldServer/makefile

@@ -21,7 +21,7 @@ Lua_W_Flags	= -Wall
 
 # World flags
 C_Flags		= -I/usr/include/mariadb -I../depends/fmt/include -I../depends/recastnavigation/Detour/Include -I/usr/local/include/boost -I../depends/glm/ -march=native -pipe -pthread -std=c++0x
-LD_Flags	= -L/usr/lib/x86_64-linux-gnu -lz -lpthread -lmariadbclient -L../depends/recastnavigation/RecastDemo/Build/gmake/lib/Debug -lDebugUtils -lDetour -lDetourCrowd -lDetourTileCache -lRecast -L/usr/local/lib -rdynamic -lm -Wl,-E -ldl -lreadline
+LD_Flags	= -L/usr/lib/x86_64-linux-gnu -lz -lpthread -lmariadbclient -L../depends/recastnavigation/RecastDemo/Build/gmake/lib/Debug -lDebugUtils -lDetour -lDetourCrowd -lDetourTileCache -lRecast -L/usr/local/lib -rdynamic -lm -Wl,-E -ldl -lreadline -lboost_system -lboost_filesystem -lboost_iostreams
 W_Flags		= -Wall -Wno-reorder
 D_Flags		= -DEQ2 -DWORLD -D_GNU_SOURCE
 

+ 1 - 1
EQ2/source/WorldServer/makefile.a64

@@ -166,7 +166,7 @@ all: $(APP)
 	
 $(APP): $(SRC)
 	$(BUILDLUA)
-	@echo Linking...; $(LINKER) $(CFLAGS) $(WFLAGS) $(DFLAGS) $(CXXFLAGS) $(OBJS) $^ $(LDFLAGS) -o $@ -lm -Wl,-E -ldl -lreadline
+	@echo Linking...; $(LINKER) $(CFLAGS) $(WFLAGS) $(DFLAGS) $(CXXFLAGS) $(OBJS) $^ $(LDFLAGS) -o $@ -lm -Wl,-E -ldl -lreadline -lboost_system -lboost_filesystem -lboost_iostreams
 	@echo Finished building world.
 	
 %.o: %.cpp