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