|
From: <rus...@us...> - 2008-02-09 05:23:36
|
Revision: 54
http://gearbox.svn.sourceforge.net/gearbox/?rev=54&view=rev
Author: russo2503v
Date: 2008-02-08 21:23:40 -0800 (Fri, 08 Feb 2008)
Log Message:
-----------
including submitted directory when enabled
Modified Paths:
--------------
gearbox/trunk/cmake/UseBasicRules.cmake
Modified: gearbox/trunk/cmake/UseBasicRules.cmake
===================================================================
--- gearbox/trunk/cmake/UseBasicRules.cmake 2008-02-09 02:34:54 UTC (rev 53)
+++ gearbox/trunk/cmake/UseBasicRules.cmake 2008-02-09 05:23:40 UTC (rev 54)
@@ -5,6 +5,14 @@
INCLUDE_DIRECTORIES( ${GBX_PROJECT_SOURCE_DIR}/src )
#
+# Do the same for the submitted directory when its compilation
+# is enabled.
+#
+IF ( GBX_BUILD_SUBMITTED )
+ INCLUDE_DIRECTORIES( ${GBX_PROJECT_SOURCE_DIR}/submitted )
+ENDIF ( GBX_BUILD_SUBMITTED )
+
+#
# Platform-specific compiler and linker flags
#
IF ( NOT OS_WIN )
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|