コード例 #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"