You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
forlineinfileinput.input(path, inplace=1): # Does a list of files, and writes redirects STDOUT to the file in question
79
80
printline.replace("#include <glfw3.h>", "#include <glfw3.h>\n#include \"distrib/screenshot.h\" // added by insertscreenshot.py; should NOT be committed !"),
80
81
81
-
defHgUpdate21():
82
+
def__HgUpdate21():
82
83
os.system('hg update --clean "2.1 branch"')
83
84
84
-
defHgUpdate33():
85
+
defGitUpdate21():
86
+
os.system('git checkout -f origin/2.1_branch')
87
+
88
+
def__HgUpdate33():
85
89
os.system('hg update --clean "default"')
86
90
91
+
defGitUpdate33():
92
+
os.system('git checkout -f origin/master')
93
+
94
+
87
95
defBuild_VC10_32():
88
96
print"Building with Visual Studio 10, 32 bits"
89
97
globalCMakePath
@@ -118,7 +126,7 @@ def Build_VC11Express_32():
118
126
globalCMakePath
119
127
globalVisualStudio11ExpressPath
120
128
ifos.path.exists("build_VC11_32") ==False:
121
-
os.makedirs("build_VC110_32")
129
+
os.makedirs("build_VC11_32")
122
130
os.chdir("build_VC11_32")
123
131
withopen(os.devnull, "w") asfnull:
124
132
print"Running CMake..."
@@ -142,6 +150,36 @@ def Build_VC11Express_64():
142
150
os.chdir("..")
143
151
144
152
153
+
defBuild_VC14Express_32():
154
+
print"Building with Visual Studio 14 Express Desktop, 32 bits"
0 commit comments