INNER CODE UNIT · Python

buildEcereSDK

ecere/ecere-sdk · setup.py:52

def buildEcereSDK():
   print('buildEcereSDK')
   call(['echo', 'buildEcereSDK'], shell=True)
   proc = subprocess.Popen(['make', 'ENABLE_PYTHON_RPATHS=1', 'ECERE_AUDIO=y', numJobs], shell=False)
   proc.communicate()
   call(['dir', path.join('obj', 'win32', 'bin')], shell=True)
   return proc.returncode == 0

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

def buildPyPrepInstall():
   print('buildPyPrepInstall')

View source record →

📰 Research Paper
Loading…
⏳ Fetching content…