Browse Source

Techwizz: Fix CMake to include boost libraries

Image 3 years ago
parent
commit
d4b59319ce
1 changed files with 1 additions and 1 deletions
  1. 1 1
      EQ2/source/WorldServer/CMakeLists.txt

+ 1 - 1
EQ2/source/WorldServer/CMakeLists.txt

@@ -12,7 +12,7 @@ find_package(ZLIB)
 add_definitions(-DEQ2 -DWORLD)
 add_executable(eq2world ${WORLD_SRCS} ${COMMON_SRCS} ${LUA_SRCS})
 
-set(RECAST_LIBRARIES -L${CMAKE_SOURCE_DIR}/EQ2/source/depends/recastnavigation/RecastDemo/Build/gmake/lib/Debug -lDebugUtils -lDetour -lDetourCrowd -lDetourTileCache -lRecast)
+set(RECAST_LIBRARIES -L${CMAKE_SOURCE_DIR}/EQ2/source/depends/recastnavigation/RecastDemo/Build/gmake/lib/Debug -lDebugUtils -lDetour -lDetourCrowd -lDetourTileCache -lRecast -lboost_system -lboost_filesystem -lboost_iostreams -lboost_regex)
 
 target_include_directories(eq2world PUBLIC ${MySQL_INCLUDE_DIRS} ../common/ ../depends/recastnavigation/Detour/Include ../depends/)
 target_link_libraries(eq2world PUBLIC ${MySQL_LIBRARIES} ${ZLIB_LIBRARIES} ${CMAKE_THREAD_LIBS_INIT} ${RECAST_LIBRARIES})