コード例 #1
0
ファイル: compiler.py プロジェクト: Quasek/pake
 def build_dir(self):
     return configurations.build_dir()
コード例 #2
0
ファイル: compiler.py プロジェクト: Quasek/pake
 def application_filename(self, target_name):
     return configurations.build_dir(
     ) + "/" + target_name + configurations.application_suffix()
コード例 #3
0
ファイル: compiler.py プロジェクト: Quasek/pake
 def cache_directory(self, target_name):
     return configurations.build_dir() + "/build." + target_name + "/"
コード例 #4
0
ファイル: compiler.py プロジェクト: Quasek/pake
 def object_filename(self, target_name, source_filename):
     return configurations.build_dir(
     ) + "/build." + target_name + "/" + source_filename + ".o"
コード例 #5
0
ファイル: compiler.py プロジェクト: Quasek/pake
 def static_library_filename(self, target_name):
     return configurations.build_dir() + "/lib" + target_name + ".a"
コード例 #6
0
ファイル: compiler.py プロジェクト: podusowski/pake
 def build_dir(self):
     return configurations.build_dir()
コード例 #7
0
ファイル: compiler.py プロジェクト: Quasek/pake
 def __prepare_linker_flags(self, link_with):
     libs_str = "".join(" -l" + lib for lib in link_with)
     return " ".join(["-L " + configurations.build_dir(), libs_str])
コード例 #8
0
ファイル: compiler.py プロジェクト: podusowski/pake
 def cache_directory(self, target_name):
     return configurations.build_dir() + "/build." + target_name + "/"
コード例 #9
0
ファイル: compiler.py プロジェクト: podusowski/pake
 def application_filename(self, target_name):
     return configurations.build_dir() + "/" + target_name + configurations.application_suffix()
コード例 #10
0
ファイル: compiler.py プロジェクト: podusowski/pake
 def static_library_filename(self, target_name):
     return configurations.build_dir() + "/lib" + target_name + ".a"
コード例 #11
0
ファイル: compiler.py プロジェクト: podusowski/pake
 def object_filename(self, target_name, source_filename):
     return configurations.build_dir() + "/build." + target_name + "/" + source_filename + ".o"
コード例 #12
0
ファイル: compiler.py プロジェクト: podusowski/pake
 def __prepare_linker_flags(self, link_with):
     libs_str = "".join(" -l" + lib for lib in link_with)
     return " ".join(["-L " + configurations.build_dir(), libs_str])