INNER CODE UNIT · Python
buildBindingsC
ecere/ecere-sdk · setup.py:76
def buildBindingsC():
print('buildBindingsC')
call(['echo', 'buildBindingsC'], shell=True)
proc = subprocess.Popen(['make', 'c_bindings'], shell=False)
proc.communicate()
call(['dir', path.join('obj', 'win32', 'bin')], shell=True)
return proc.returncode == 0
def buildBindingsGenPy():
print('buildBindingsGenPy')
call(['echo', 'buildBindingsGenPy'], shell=True)
proc = subprocess.Popen(['make', 'py_bindings_gen'], shell=False)
proc.communicate()
return proc.returncode == 0
def buildAll():
print('buildAll')
call(['echo', 'buildAll'], shell=True)