Skip to content

Commit

Permalink
Build/Tools: Fix linker errors (zlib and pthread)
Browse files Browse the repository at this point in the history
  • Loading branch information
DDuarte committed Nov 1, 2014
1 parent f4a318b commit 521ff3d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/tools/connection_patcher/CMakeLists.txt
Expand Up @@ -38,6 +38,7 @@ add_executable(connection_patcher ${HEADER_FILES} ${SRC_FILES})
target_link_libraries(connection_patcher
shared
${OPENSSL_LIBRARIES}
${CMAKE_THREAD_LIBS_INIT}
${Boost_LIBRARIES}
)

Expand Down
2 changes: 1 addition & 1 deletion src/tools/map_extractor/CMakeLists.txt
Expand Up @@ -25,10 +25,10 @@ add_executable(mapextractor
)

target_link_libraries(mapextractor
casc
${BZIP2_LIBRARIES}
${ZLIB_LIBRARIES}
${Boost_LIBRARIES}
casc
)

add_dependencies(mapextractor casc)
Expand Down
2 changes: 1 addition & 1 deletion src/tools/vmap4_extractor/CMakeLists.txt
Expand Up @@ -28,9 +28,9 @@ include_directories(
add_executable(vmap4extractor ${sources})

target_link_libraries(vmap4extractor
casc
${BZIP2_LIBRARIES}
${ZLIB_LIBRARIES}
casc
)

add_dependencies(vmap4extractor casc)
Expand Down

0 comments on commit 521ff3d

Please sign in to comment.