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