示例#1
0
文件: Linux.py 项目: jacquev6/ViDE
 def canBeDefault( self ):
     return ViDE.host() == "linux"
示例#2
0
文件: Boost.py 项目: jacquev6/ViDE
 def getLibName(self):
     return self.getBoostLibName("python") + ("-py27" if ViDE.host() == "linux" else "")
示例#3
0
文件: Python.py 项目: jacquev6/ViDE
 def getLibName( self ):
     if ViDE.host() == "win32":
         return "python27"
     else:
         return Python.versionName
示例#4
0
文件: Python.py 项目: jacquev6/ViDE
 def getLibPath( self ):
     if ViDE.host() == "win32":
         return "c:\\Python27\\libs"
     else:
         return None
示例#5
0
文件: Windows.py 项目: jacquev6/ViDE
 def canBeDefault( self ):
     return ViDE.host() == "win32"
示例#6
0
文件: Cygwin.py 项目: jacquev6/ViDE
 def canBeDefault( self ):
     return ViDE.host() == "cygwin"