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