From: <a-...@us...> - 2010-03-04 02:05:19
|
Revision: 187 http://simspark.svn.sourceforge.net/simspark/?rev=187&view=rev Author: a-held Date: 2010-03-04 02:05:13 +0000 (Thu, 04 Mar 2010) Log Message: ----------- Change makefiles to link ODE with odeimps module and not with oxygen Modified Paths: -------------- trunk/spark/lib/oxygen/CMakeLists.txt trunk/spark/plugin/odeimps/CMakeLists.txt Modified: trunk/spark/lib/oxygen/CMakeLists.txt =================================================================== --- trunk/spark/lib/oxygen/CMakeLists.txt 2010-02-28 21:46:06 UTC (rev 186) +++ trunk/spark/lib/oxygen/CMakeLists.txt 2010-03-04 02:05:13 UTC (rev 187) @@ -302,7 +302,7 @@ add_library(oxygen ${oxygen_LIB_SRCS} ${oxygen_LIB_HDRS}) target_link_libraries(oxygen rcssnet3D ${Boost_LIBRARIES} - ${ODE_LIBRARY} ${oxygen_require_libs}) + ${oxygen_require_libs}) set_target_properties(oxygen PROPERTIES VERSION ${OXYGEN_VERSION} SOVERSION ${OXYGEN_SO_VERSION} DEBUG_POSTFIX _debug) Modified: trunk/spark/plugin/odeimps/CMakeLists.txt =================================================================== --- trunk/spark/plugin/odeimps/CMakeLists.txt 2010-02-28 21:46:06 UTC (rev 186) +++ trunk/spark/plugin/odeimps/CMakeLists.txt 2010-03-04 02:05:13 UTC (rev 187) @@ -106,7 +106,7 @@ add_library(odeimps MODULE ${odeimps_LIB_SRCS}) -target_link_libraries(odeimps ${spark_libs}) +target_link_libraries(odeimps ${ODE_LIBRARY} ${spark_libs}) if (NOT APPLE) set_target_properties(odeimps PROPERTIES VERSION 0.0.0 SOVERSION 0) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |