|
From: <tk...@us...> - 2009-05-23 19:03:00
|
Revision: 63
http://simspark.svn.sourceforge.net/simspark/?rev=63&view=rev
Author: tknrkb
Date: 2009-05-23 19:02:47 +0000 (Sat, 23 May 2009)
Log Message:
-----------
plugin link.txt fix for Mac OSX
Modified Paths:
--------------
trunk/rcssserver3d/plugin/soccer/CMakeLists.txt
trunk/rcssserver3d/plugin/soccermonitor/CMakeLists.txt
trunk/spark/plugin/collisionperceptor/CMakeLists.txt
trunk/spark/plugin/filesystemrar/CMakeLists.txt
trunk/spark/plugin/filesystemstd/CMakeLists.txt
trunk/spark/plugin/filesystemzip/CMakeLists.txt
trunk/spark/plugin/forceeffector/CMakeLists.txt
trunk/spark/plugin/gyrorateperceptor/CMakeLists.txt
trunk/spark/plugin/imageperceptor/CMakeLists.txt
trunk/spark/plugin/inputsdl/CMakeLists.txt
trunk/spark/plugin/inputwx/CMakeLists.txt
trunk/spark/plugin/objimporter/CMakeLists.txt
trunk/spark/plugin/openglsyssdl/CMakeLists.txt
trunk/spark/plugin/openglsyswx/CMakeLists.txt
trunk/spark/plugin/perfectvisionperceptor/CMakeLists.txt
trunk/spark/plugin/rosimporter/CMakeLists.txt
trunk/spark/plugin/rubysceneimporter/CMakeLists.txt
trunk/spark/plugin/sceneeffector/CMakeLists.txt
trunk/spark/plugin/sexpparser/CMakeLists.txt
trunk/spark/plugin/soundsystembass/CMakeLists.txt
trunk/spark/plugin/soundsystemfmod/CMakeLists.txt
trunk/spark/plugin/sparkagent/CMakeLists.txt
trunk/spark/plugin/sparkmonitor/CMakeLists.txt
Modified: trunk/rcssserver3d/plugin/soccer/CMakeLists.txt
===================================================================
--- trunk/rcssserver3d/plugin/soccer/CMakeLists.txt 2009-04-30 16:03:43 UTC (rev 62)
+++ trunk/rcssserver3d/plugin/soccer/CMakeLists.txt 2009-05-23 19:02:47 UTC (rev 63)
@@ -119,7 +119,10 @@
${ZEITGEIST_LIBRARIES} ${KEROSIN_LIBRARIES}
${OPENGL_gl_LIBRARY})
-set_target_properties(soccer PROPERTIES VERSION 1.0.0 SOVERSION 1)
+if (NOT APPLE)
+ set_target_properties(soccer PROPERTIES VERSION 1.0.0 SOVERSION 1)
+endif (NOT APPLE)
+
install(TARGETS soccer DESTINATION ${LIBDIR}/${CMAKE_PROJECT_NAME})
Modified: trunk/rcssserver3d/plugin/soccermonitor/CMakeLists.txt
===================================================================
--- trunk/rcssserver3d/plugin/soccermonitor/CMakeLists.txt 2009-04-30 16:03:43 UTC (rev 62)
+++ trunk/rcssserver3d/plugin/soccermonitor/CMakeLists.txt 2009-05-23 19:02:47 UTC (rev 63)
@@ -28,7 +28,10 @@
target_link_libraries(soccermonitor ${SALT_LIBRARIES} ${OXYGEN_LIBRARIES}
${ZEITGEIST_LIBRARIES} ${KEROSIN_LIBRARIES})
-set_target_properties(soccermonitor PROPERTIES VERSION 1.0.0 SOVERSION 1)
+if (NOT APPLE)
+ set_target_properties(soccermonitor PROPERTIES VERSION 1.0.0 SOVERSION 1)
+endif (NOT APPLE)
+
install(TARGETS soccermonitor DESTINATION ${LIBDIR}/${CMAKE_PROJECT_NAME})
Modified: trunk/spark/plugin/collisionperceptor/CMakeLists.txt
===================================================================
--- trunk/spark/plugin/collisionperceptor/CMakeLists.txt 2009-04-30 16:03:43 UTC (rev 62)
+++ trunk/spark/plugin/collisionperceptor/CMakeLists.txt 2009-05-23 19:02:47 UTC (rev 63)
@@ -24,5 +24,8 @@
target_link_libraries(collisionperceptor ${spark_libs})
-set_target_properties(collisionperceptor PROPERTIES VERSION 0.0.0 SOVERSION 0)
+if (NOT APPLE)
+ set_target_properties(collisionperceptor PROPERTIES VERSION 0.0.0 SOVERSION 0)
+endif (NOT APPLE)
+
install(TARGETS collisionperceptor DESTINATION ${LIBDIR}/${CMAKE_PROJECT_NAME})
Modified: trunk/spark/plugin/filesystemrar/CMakeLists.txt
===================================================================
--- trunk/spark/plugin/filesystemrar/CMakeLists.txt 2009-04-30 16:03:43 UTC (rev 62)
+++ trunk/spark/plugin/filesystemrar/CMakeLists.txt 2009-05-23 19:02:47 UTC (rev 63)
@@ -12,5 +12,8 @@
target_link_libraries(filesystemrar ${spark_libs})
-set_target_properties(filesystemrar PROPERTIES VERSION 0.0.0 SOVERSION 0)
+if (NOT APPLE)
+ set_target_properties(filesystemrar PROPERTIES VERSION 0.0.0 SOVERSION 0)
+endif (NOT APPLE)
+
install(TARGETS filesystemrar DESTINATION ${LIBDIR}/${CMAKE_PROJECT_NAME})
Modified: trunk/spark/plugin/filesystemstd/CMakeLists.txt
===================================================================
--- trunk/spark/plugin/filesystemstd/CMakeLists.txt 2009-04-30 16:03:43 UTC (rev 62)
+++ trunk/spark/plugin/filesystemstd/CMakeLists.txt 2009-05-23 19:02:47 UTC (rev 63)
@@ -12,5 +12,8 @@
target_link_libraries(filesystemstd ${spark_libs})
-set_target_properties(filesystemstd PROPERTIES VERSION 0.0.0 SOVERSION 0)
+if (NOT APPLE)
+ set_target_properties(filesystemstd PROPERTIES VERSION 0.0.0 SOVERSION 0)
+endif (NOT APPLE)
+
install(TARGETS filesystemstd DESTINATION ${LIBDIR}/${CMAKE_PROJECT_NAME})
Modified: trunk/spark/plugin/filesystemzip/CMakeLists.txt
===================================================================
--- trunk/spark/plugin/filesystemzip/CMakeLists.txt 2009-04-30 16:03:43 UTC (rev 62)
+++ trunk/spark/plugin/filesystemzip/CMakeLists.txt 2009-05-23 19:02:47 UTC (rev 63)
@@ -16,6 +16,9 @@
target_link_libraries(filesystemzip ${Boost_REGEX_LIBRARY}
${spark_libs} ${ZLIB_LIBRARIES})
- set_target_properties(filesystemzip PROPERTIES VERSION 0.0.0 SOVERSION 0)
+ if (NOT APPLE)
+ set_target_properties(filesystemzip PROPERTIES VERSION 0.0.0 SOVERSION 0)
+ endif (NOT APPLE)
+
install(TARGETS filesystemzip DESTINATION ${LIBDIR}/${CMAKE_PROJECT_NAME})
endif (Boost_REGEX_FOUND AND ZLIB_FOUND)
Modified: trunk/spark/plugin/forceeffector/CMakeLists.txt
===================================================================
--- trunk/spark/plugin/forceeffector/CMakeLists.txt 2009-04-30 16:03:43 UTC (rev 62)
+++ trunk/spark/plugin/forceeffector/CMakeLists.txt 2009-05-23 19:02:47 UTC (rev 63)
@@ -13,5 +13,8 @@
target_link_libraries(forceeffector ${spark_libs})
-set_target_properties(forceeffector PROPERTIES VERSION 0.0.0 SOVERSION 0)
+if (NOT APPLE)
+ set_target_properties(forceeffector PROPERTIES VERSION 0.0.0 SOVERSION 0)
+endif (NOT APPLE)
+
install(TARGETS forceeffector DESTINATION ${LIBDIR}/${CMAKE_PROJECT_NAME})
Modified: trunk/spark/plugin/gyrorateperceptor/CMakeLists.txt
===================================================================
--- trunk/spark/plugin/gyrorateperceptor/CMakeLists.txt 2009-04-30 16:03:43 UTC (rev 62)
+++ trunk/spark/plugin/gyrorateperceptor/CMakeLists.txt 2009-05-23 19:02:47 UTC (rev 63)
@@ -12,5 +12,8 @@
target_link_libraries(gyrorateperceptor ${spark_libs})
-set_target_properties(gyrorateperceptor PROPERTIES VERSION 0.0.0 SOVERSION 0)
+if (NOT APPLE)
+ set_target_properties(gyrorateperceptor PROPERTIES VERSION 0.0.0 SOVERSION 0)
+endif (NOT APPLE)
+
install(TARGETS gyrorateperceptor DESTINATION ${LIBDIR}/${CMAKE_PROJECT_NAME})
Modified: trunk/spark/plugin/imageperceptor/CMakeLists.txt
===================================================================
--- trunk/spark/plugin/imageperceptor/CMakeLists.txt 2009-04-30 16:03:43 UTC (rev 62)
+++ trunk/spark/plugin/imageperceptor/CMakeLists.txt 2009-05-23 19:02:47 UTC (rev 63)
@@ -12,7 +12,10 @@
target_link_libraries(imageperceptor ${spark_libs} ${Boost_LIBRARIES})
-set_target_properties(imageperceptor PROPERTIES VERSION 0.0.0 SOVERSION 0)
if (NOT APPLE)
+ set_target_properties(imageperceptor PROPERTIES VERSION 0.0.0 SOVERSION 0)
+endif (NOT APPLE)
+
+if (NOT APPLE)
install(TARGETS imageperceptor DESTINATION ${LIBDIR}/${CMAKE_PROJECT_NAME})
endif (NOT APPLE)
Modified: trunk/spark/plugin/inputsdl/CMakeLists.txt
===================================================================
--- trunk/spark/plugin/inputsdl/CMakeLists.txt 2009-04-30 16:03:43 UTC (rev 62)
+++ trunk/spark/plugin/inputsdl/CMakeLists.txt 2009-05-23 19:02:47 UTC (rev 63)
@@ -25,6 +25,9 @@
target_link_libraries(inputsdl ${spark_libs})
-set_target_properties(inputsdl PROPERTIES VERSION 0.0.0 SOVERSION 0)
+if (NOT APPLE)
+ set_target_properties(inputsdl PROPERTIES VERSION 0.0.0 SOVERSION 0)
+endif (NOT APPLE)
+
install(TARGETS inputsdl DESTINATION ${LIBDIR}/${CMAKE_PROJECT_NAME})
Modified: trunk/spark/plugin/inputwx/CMakeLists.txt
===================================================================
--- trunk/spark/plugin/inputwx/CMakeLists.txt 2009-04-30 16:03:43 UTC (rev 62)
+++ trunk/spark/plugin/inputwx/CMakeLists.txt 2009-05-23 19:02:47 UTC (rev 63)
@@ -18,6 +18,9 @@
target_link_libraries(inputwx ${wxWidgets_LIBRARIES} ${spark_libs})
set_target_properties(inputwx PROPERTIES COMPILE_FLAGS ${wxWidgets_CXX_FLAGS})
- set_target_properties(inputwx PROPERTIES VERSION 0.0.0 SOVERSION 0)
+ if (NOT APPLE)
+ set_target_properties(inputwx PROPERTIES VERSION 0.0.0 SOVERSION 0)
+ endif (NOT APPLE)
+
install(TARGETS inputwx DESTINATION ${LIBDIR}/${CMAKE_PROJECT_NAME})
endif (wxWidgets_FOUND)
Modified: trunk/spark/plugin/objimporter/CMakeLists.txt
===================================================================
--- trunk/spark/plugin/objimporter/CMakeLists.txt 2009-04-30 16:03:43 UTC (rev 62)
+++ trunk/spark/plugin/objimporter/CMakeLists.txt 2009-05-23 19:02:47 UTC (rev 63)
@@ -12,5 +12,8 @@
target_link_libraries(objimporter ${spark_libs})
-set_target_properties(objimporter PROPERTIES VERSION 0.0.0 SOVERSION 0)
+if (NOT APPLE)
+ set_target_properties(objimporter PROPERTIES VERSION 0.0.0 SOVERSION 0)
+endif (NOT APPLE)
+
install(TARGETS objimporter DESTINATION ${LIBDIR}/${CMAKE_PROJECT_NAME})
Modified: trunk/spark/plugin/openglsyssdl/CMakeLists.txt
===================================================================
--- trunk/spark/plugin/openglsyssdl/CMakeLists.txt 2009-04-30 16:03:43 UTC (rev 62)
+++ trunk/spark/plugin/openglsyssdl/CMakeLists.txt 2009-05-23 19:02:47 UTC (rev 63)
@@ -14,5 +14,8 @@
target_link_libraries(openglsyssdl ${spark_libs})
-set_target_properties(openglsyssdl PROPERTIES VERSION 0.0.0 SOVERSION 0)
+if (NOT APPLE)
+ set_target_properties(openglsyssdl PROPERTIES VERSION 0.0.0 SOVERSION 0)
+endif (NOT APPLE)
+
install(TARGETS openglsyssdl DESTINATION ${LIBDIR}/${CMAKE_PROJECT_NAME})
Modified: trunk/spark/plugin/openglsyswx/CMakeLists.txt
===================================================================
--- trunk/spark/plugin/openglsyswx/CMakeLists.txt 2009-04-30 16:03:43 UTC (rev 62)
+++ trunk/spark/plugin/openglsyswx/CMakeLists.txt 2009-05-23 19:02:47 UTC (rev 63)
@@ -15,7 +15,10 @@
target_link_libraries(openglsyswx ${wxWidgets_LIBRARIES} ${spark_libs})
- set_target_properties(openglsyswx PROPERTIES VERSION 0.0.0 SOVERSION 0)
+ if (NOT APPLE)
+ set_target_properties(openglsyswx PROPERTIES VERSION 0.0.0 SOVERSION 0)
+ endif (NOT APPLE)
+
set_target_properties(inputwx PROPERTIES COMPILE_FLAGS ${wxWidgets_CXX_FLAGS})
install(TARGETS openglsyswx DESTINATION ${LIBDIR}/${CMAKE_PROJECT_NAME})
Modified: trunk/spark/plugin/perfectvisionperceptor/CMakeLists.txt
===================================================================
--- trunk/spark/plugin/perfectvisionperceptor/CMakeLists.txt 2009-04-30 16:03:43 UTC (rev 62)
+++ trunk/spark/plugin/perfectvisionperceptor/CMakeLists.txt 2009-05-23 19:02:47 UTC (rev 63)
@@ -12,6 +12,9 @@
target_link_libraries(perfectvisionperceptor ${spark_libs})
-set_target_properties(perfectvisionperceptor PROPERTIES VERSION 0.0.0 SOVERSION 0)
+if (NOT APPLE)
+ set_target_properties(perfectvisionperceptor PROPERTIES VERSION 0.0.0 SOVERSION 0)
+endif (NOT APPLE)
+
install(TARGETS perfectvisionperceptor DESTINATION ${LIBDIR}/${CMAKE_PROJECT_NAME})
Modified: trunk/spark/plugin/rosimporter/CMakeLists.txt
===================================================================
--- trunk/spark/plugin/rosimporter/CMakeLists.txt 2009-04-30 16:03:43 UTC (rev 62)
+++ trunk/spark/plugin/rosimporter/CMakeLists.txt 2009-05-23 19:02:47 UTC (rev 63)
@@ -13,5 +13,8 @@
target_link_libraries(rosimporter tinyxml_ex ${spark_libs})
-set_target_properties(rosimporter PROPERTIES VERSION 0.0.0 SOVERSION 0)
+if (NOT APPLE)
+ set_target_properties(rosimporter PROPERTIES VERSION 0.0.0 SOVERSION 0)
+endif (NOT APPLE)
+
install(TARGETS rosimporter DESTINATION ${LIBDIR}/${CMAKE_PROJECT_NAME})
Modified: trunk/spark/plugin/rubysceneimporter/CMakeLists.txt
===================================================================
--- trunk/spark/plugin/rubysceneimporter/CMakeLists.txt 2009-04-30 16:03:43 UTC (rev 62)
+++ trunk/spark/plugin/rubysceneimporter/CMakeLists.txt 2009-05-23 19:02:47 UTC (rev 63)
@@ -11,5 +11,8 @@
target_link_libraries(rubysceneimporter sexp ${spark_libs})
-set_target_properties(rubysceneimporter PROPERTIES VERSION 0.0.0 SOVERSION 0)
+if (NOT APPLE)
+ set_target_properties(rubysceneimporter PROPERTIES VERSION 0.0.0 SOVERSION 0)
+endif (NOT APPLE)
+
install(TARGETS rubysceneimporter DESTINATION ${LIBDIR}/${CMAKE_PROJECT_NAME})
Modified: trunk/spark/plugin/sceneeffector/CMakeLists.txt
===================================================================
--- trunk/spark/plugin/sceneeffector/CMakeLists.txt 2009-04-30 16:03:43 UTC (rev 62)
+++ trunk/spark/plugin/sceneeffector/CMakeLists.txt 2009-05-23 19:02:47 UTC (rev 63)
@@ -13,5 +13,8 @@
target_link_libraries(sceneeffector ${spark_libs})
-set_target_properties(sceneeffector PROPERTIES VERSION 0.0.0 SOVERSION 0)
+if (NOT APPLE)
+ set_target_properties(sceneeffector PROPERTIES VERSION 0.0.0 SOVERSION 0)
+endif (NOT APPLE)
+
install(TARGETS sceneeffector DESTINATION ${LIBDIR}/${CMAKE_PROJECT_NAME})
Modified: trunk/spark/plugin/sexpparser/CMakeLists.txt
===================================================================
--- trunk/spark/plugin/sexpparser/CMakeLists.txt 2009-04-30 16:03:43 UTC (rev 62)
+++ trunk/spark/plugin/sexpparser/CMakeLists.txt 2009-05-23 19:02:47 UTC (rev 63)
@@ -11,5 +11,8 @@
target_link_libraries(sexpparser sexp ${spark_libs})
-set_target_properties(sexpparser PROPERTIES VERSION 0.0.0 SOVERSION 0)
+if (NOT APPLE)
+ set_target_properties(sexpparser PROPERTIES VERSION 0.0.0 SOVERSION 0)
+endif (NOT APPLE)
+
install(TARGETS sexpparser DESTINATION ${LIBDIR}/${CMAKE_PROJECT_NAME})
Modified: trunk/spark/plugin/soundsystembass/CMakeLists.txt
===================================================================
--- trunk/spark/plugin/soundsystembass/CMakeLists.txt 2009-04-30 16:03:43 UTC (rev 62)
+++ trunk/spark/plugin/soundsystembass/CMakeLists.txt 2009-05-23 19:02:47 UTC (rev 63)
@@ -18,5 +18,8 @@
target_link_libraries(soundsystembass ${spark_libs})
-set_target_properties(soundsystembass PROPERTIES VERSION 0.0.0 SOVERSION 0)
+if (NOT APPLE)
+ set_target_properties(soundsystembass PROPERTIES VERSION 0.0.0 SOVERSION 0)
+endif (NOT APPLE)
+
install(TARGETS soundsystembass DESTINATION ${LIBDIR}/${CMAKE_PROJECT_NAME})
Modified: trunk/spark/plugin/soundsystemfmod/CMakeLists.txt
===================================================================
--- trunk/spark/plugin/soundsystemfmod/CMakeLists.txt 2009-04-30 16:03:43 UTC (rev 62)
+++ trunk/spark/plugin/soundsystemfmod/CMakeLists.txt 2009-05-23 19:02:47 UTC (rev 63)
@@ -22,6 +22,9 @@
target_link_libraries(soundsystemfmod ${FMOD_LIBRARIES} ${spark_libs})
- set_target_properties(soundsystemfmod PROPERTIES VERSION 0.0.0 SOVERSION 0)
+ if (NOT APPLE)
+ set_target_properties(soundsystemfmod PROPERTIES VERSION 0.0.0 SOVERSION 0)
+ endif (NOT APPLE)
+
install(TARGETS soundsystemfmod DESTINATION ${LIBDIR}/${CMAKE_PROJECT_NAME})
endif (FMOD_FOUND)
Modified: trunk/spark/plugin/sparkagent/CMakeLists.txt
===================================================================
--- trunk/spark/plugin/sparkagent/CMakeLists.txt 2009-04-30 16:03:43 UTC (rev 62)
+++ trunk/spark/plugin/sparkagent/CMakeLists.txt 2009-05-23 19:02:47 UTC (rev 63)
@@ -33,5 +33,8 @@
target_link_libraries(sparkagent ${spark_libs})
-set_target_properties(sparkagent PROPERTIES VERSION 0.0.0 SOVERSION 0)
+if (NOT APPLE)
+ set_target_properties(sparkagent PROPERTIES VERSION 0.0.0 SOVERSION 0)
+endif (NOT APPLE)
+
install(TARGETS sparkagent DESTINATION ${LIBDIR}/${CMAKE_PROJECT_NAME})
Modified: trunk/spark/plugin/sparkmonitor/CMakeLists.txt
===================================================================
--- trunk/spark/plugin/sparkmonitor/CMakeLists.txt 2009-04-30 16:03:43 UTC (rev 62)
+++ trunk/spark/plugin/sparkmonitor/CMakeLists.txt 2009-05-23 19:02:47 UTC (rev 63)
@@ -17,5 +17,8 @@
target_link_libraries(sparkmonitor sexp ${spark_libs})
-set_target_properties(sparkmonitor PROPERTIES VERSION 0.0.0 SOVERSION 0)
+if (NOT APPLE)
+ set_target_properties(sparkmonitor PROPERTIES VERSION 0.0.0 SOVERSION 0)
+endif (NOT APPLE)
+
install(TARGETS sparkmonitor DESTINATION ${LIBDIR}/${CMAKE_PROJECT_NAME})
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|