Revision: 841
http://python-ogre.svn.sourceforge.net/python-ogre/?rev=841&view=rev
Author: andy_miller
Date: 2009-01-22 04:26:40 +0000 (Thu, 22 Jan 2009)
Log Message:
-----------
Added the 'generated source' directory to the include path for compiling - required for the new indexing system
Modified Paths:
--------------
trunk/python-ogre/SConstruct
Modified: trunk/python-ogre/SConstruct
===================================================================
--- trunk/python-ogre/SConstruct 2009-01-19 10:31:39 UTC (rev 840)
+++ trunk/python-ogre/SConstruct 2009-01-22 04:26:40 UTC (rev 841)
@@ -66,6 +66,10 @@
else:
CCFLAGS = ' -I -pipe -O3 -I./'
+
+ ## change to ensure the source file is also in the include path due to indexing suite changes
+ CCFLAGS += ' -I' +cls._source + ' '
+
return CCFLAGS
def get_source_files(cls, _dir, usepch = False):
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|