예제 #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])