From: ThorstenB Date: Sun, 29 Jan 2012 13:28:49 +0000 (+0100) Subject: Correct dependency of shared simgear libraries with enabled JPEG_FACTORY. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=96c2e4d3abb40ebbe3ccb49dae93679d4d2c3ef6;p=simgear.git Correct dependency of shared simgear libraries with enabled JPEG_FACTORY. --- diff --git a/simgear/CMakeLists.txt b/simgear/CMakeLists.txt index 9a309e0e..a7ac3932 100644 --- a/simgear/CMakeLists.txt +++ b/simgear/CMakeLists.txt @@ -56,7 +56,7 @@ if(SIMGEAR_SHARED) set_property(TARGET SimGearCore PROPERTY VERSION ${SIMGEAR_VERSION}) set_property(TARGET SimGearCore PROPERTY SOVERSION ${SIMGEAR_SOVERSION}) - target_link_libraries(SimGearCore ${ZLIB_LIBRARY} ${RT_LIBRARY}) + target_link_libraries(SimGearCore ${ZLIB_LIBRARY} ${RT_LIBRARY} ${JPEG_LIBRARY}) install(TARGETS SimGearCore LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}) if(NOT SIMGEAR_HEADLESS)