[commit] r1616 - trunk/Install/Build
GMESRC Repository Notifications
gme-commit at list.isis.vanderbilt.edu
Wed Oct 12 12:49:17 CDT 2011
Author: ksmyth
Date: Wed Oct 12 12:49:17 2011
New Revision: 1616
Log:
Skip some things under x64
Modified:
trunk/Install/Build/build.py
Modified: trunk/Install/Build/build.py
==============================================================================
--- trunk/Install/Build/build.py Wed Oct 12 12:49:07 2011 (r1615)
+++ trunk/Install/Build/build.py Wed Oct 12 12:49:17 2011 (r1616)
@@ -96,6 +96,7 @@
def compile_JBON():
"Compile Java component support (JBON)"
+ if prefs['arch'] == 'x64': return
sln_file = os.path.join(GME_ROOT, "SDK", "Java", "native", "JavaSupport.sln");
tools.build_VS( sln_file, "Release" )
@@ -103,13 +104,14 @@
def compile_tools():
"Compile external tool components"
- # Table Editor
- sln_file = os.path.join(GME_ROOT, "Tools", "TableEditor", "TableEditor.sln");
- tools.build_VS( sln_file, "Release" )
-
# Auto Layout
sln_file = os.path.join(GME_ROOT, "Tools", "AutoLayout", "AutoLayout.sln");
tools.build_VS( sln_file, "Release" )
+ if prefs['arch'] == 'x64': return
+
+ # Table Editor
+ sln_file = os.path.join(GME_ROOT, "Tools", "TableEditor", "TableEditor.sln");
+ tools.build_VS( sln_file, "Release" )
# GMEplink
sln_file = os.path.join(GME_ROOT, "Tools", "GMEplink", "GMEplink.sln");
@@ -120,6 +122,12 @@
def compile_samples():
"Compile sample components"
+
+ # UML Paradigm
+ sln_file = os.path.join(GME_ROOT, "Paradigms", "UML", "decorator", "UMLDecorator.sln");
+ tools.build_VS( sln_file, "Release" )
+
+ if prefs['arch'] == 'x64': return
sln_file = os.path.join(GME_ROOT, "SDK", "PatternProcessor", "PatternProcessor.sln");
tools.build_VS( sln_file, "Release" )
@@ -136,10 +144,6 @@
sln_file = os.path.join(GME_ROOT, "Paradigms", "HFSM", "HFSMSimulator", "HFSMSimulator.sln");
tools.build_VS( sln_file, "Release" )
- # UML Paradigm
- sln_file = os.path.join(GME_ROOT, "Paradigms", "UML", "decorator", "UMLDecorator.sln");
- tools.build_VS( sln_file, "Release" )
-
def zip_decorsamples():
"Create PlainDecoratorSample.zip"
More information about the gme-commit
mailing list