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