Merge pull request #5455 from evharten/master

Buildsystem/CMake: Link MPQ-library earlier in the chain to fix a compileissue for -DTOOLS on Ubuntu systems.
This commit is contained in:
click
2012-03-04 07:28:07 -08:00
2 changed files with 2 additions and 2 deletions

View File

@@ -33,9 +33,9 @@ add_executable(mapextractor
)
target_link_libraries(mapextractor
mpq
${BZIP2_LIBRARIES}
${ZLIB_LIBRARIES}
mpq
)
add_dependencies(mapextractor mpq)

View File

@@ -34,9 +34,9 @@ endif()
add_executable(vmap4extractor ${sources})
target_link_libraries(vmap4extractor
mpq
${BZIP2_LIBRARIES}
${ZLIB_LIBRARIES}
mpq
)
add_dependencies(vmap4extractor mpq)