INNER CODE UNIT · Python

buildPyPrepInstall

ecere/ecere-sdk · setup.py:68

def buildPyPrepInstall():
   print('buildPyPrepInstall')
   call(['echo', 'buildPyPrepInstall'], shell=True)
   proc = subprocess.Popen(['make', 'py_prepinstall'], shell=False)
   proc.communicate()
   call(['dir', path.join('obj', 'win32', 'bin')], shell=True)
   return proc.returncode == 0

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')

View source record →

📰 Research Paper
Loading…
⏳ Fetching content…