Exemple #1
0
 def canBeDefault( self ):
     return ViDE.host() == "linux"
Exemple #2
0
 def getLibName(self):
     return self.getBoostLibName("python") + ("-py27" if ViDE.host() == "linux" else "")
Exemple #3
0
 def getLibName( self ):
     if ViDE.host() == "win32":
         return "python27"
     else:
         return Python.versionName
Exemple #4
0
 def getLibPath( self ):
     if ViDE.host() == "win32":
         return "c:\\Python27\\libs"
     else:
         return None
Exemple #5
0
 def canBeDefault( self ):
     return ViDE.host() == "win32"
Exemple #6
0
 def canBeDefault( self ):
     return ViDE.host() == "cygwin"