[commit] r2093 - remove CMAKE_REQUIRED_INCLUDES from target search path

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

[commit] r2093 - remove CMAKE_REQUIRED_INCLUDES from target search path

commits-3
 
Author: piumarta
Date: 2009-08-26 12:03:50 -0700 (Wed, 26 Aug 2009)
New Revision: 2093

Modified:
   trunk/platforms/unix/ChangeLog
   trunk/platforms/unix/cmake/PluginExternal.cmake
   trunk/platforms/unix/cmake/PluginInternal.cmake
Log:
remove CMAKE_REQUIRED_INCLUDES from target search path

Modified: trunk/platforms/unix/ChangeLog
===================================================================
--- trunk/platforms/unix/ChangeLog 2009-08-26 19:01:08 UTC (rev 2092)
+++ trunk/platforms/unix/ChangeLog 2009-08-26 19:03:50 UTC (rev 2093)
@@ -1,5 +1,8 @@
 2009-08-26    <[hidden email]>
 
+ * cmake/PluginInternal.cmake, cmake/PluginExternal.cmake: Remove
+ CMAKE_REQUIRE_INCLUDES from include paths.
+
  * cmake/Plugins.cmake: Add PLUGIN_FIND and PLUGIN_REQUIRE macros.
  * cmake/Utils.cmake: Add macro LIST_APPEND.
 

Modified: trunk/platforms/unix/cmake/PluginExternal.cmake
===================================================================
--- trunk/platforms/unix/cmake/PluginExternal.cmake 2009-08-26 19:01:08 UTC (rev 2092)
+++ trunk/platforms/unix/cmake/PluginExternal.cmake 2009-08-26 19:03:50 UTC (rev 2093)
@@ -10,7 +10,6 @@
     ${unix}/plugins/@plugin@
     ${unix}/@plugin@
     ${cross}/plugins/@plugin@
-    ${CMAKE_REQUIRED_INCLUDES}
 )
 
 ADD_LIBRARY (@plugin@ MODULE @plugin_sources@)

Modified: trunk/platforms/unix/cmake/PluginInternal.cmake
===================================================================
--- trunk/platforms/unix/cmake/PluginInternal.cmake 2009-08-26 19:01:08 UTC (rev 2092)
+++ trunk/platforms/unix/cmake/PluginInternal.cmake 2009-08-26 19:03:50 UTC (rev 2093)
@@ -10,7 +10,6 @@
     ${unix}/plugins/@plugin@
     ${unix}/@plugin@
     ${cross}/plugins/@plugin@
-    ${CMAKE_REQUIRED_INCLUDES}
 )
 
 ADD_LIBRARY (@plugin@ STATIC @plugin_sources@)