fixup cmakelists, they weren't adding the new libraries

Conflicts:
	src/CMakeLists.txt
This commit is contained in:
Chris Beck 2014-10-28 21:45:03 -04:00
parent 66c1f9d786
commit 43ef193f29

View file

@ -83,6 +83,19 @@ else(MSVC)
)
endif(MSVC)
if(ENABLE_BOOST_FILESYSTEM AND NOT ENABLE_PANDORA)
set(common-external-libs
${common-external-libs}
${Boost_FILESYSTEM_LIBRARY}
${Boost_LOCALE_LIBRARY}
)
else(ENABLE_BOOST_FILESYSTEM AND NOT ENABLE_PANDORA)
set(common-external-libs
${common-external-libs}
${LIBINTL_LIBRARY}
)
endif(ENABLE_BOOST_FILESYSTEM AND NOT ENABLE_PANDORA)
set(game-external-libs
${common-external-libs}
${Boost_SYSTEM_LIBRARIES}