Exemplo n.º 1
0
 def build_dir(self):
     return configurations.build_dir()
Exemplo n.º 2
0
 def application_filename(self, target_name):
     return configurations.build_dir(
     ) + "/" + target_name + configurations.application_suffix()
Exemplo n.º 3
0
 def cache_directory(self, target_name):
     return configurations.build_dir() + "/build." + target_name + "/"
Exemplo n.º 4
0
 def object_filename(self, target_name, source_filename):
     return configurations.build_dir(
     ) + "/build." + target_name + "/" + source_filename + ".o"
Exemplo n.º 5
0
 def static_library_filename(self, target_name):
     return configurations.build_dir() + "/lib" + target_name + ".a"
Exemplo n.º 6
0
 def build_dir(self):
     return configurations.build_dir()
Exemplo n.º 7
0
 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])
Exemplo n.º 8
0
 def cache_directory(self, target_name):
     return configurations.build_dir() + "/build." + target_name + "/"
Exemplo n.º 9
0
 def application_filename(self, target_name):
     return configurations.build_dir() + "/" + target_name + configurations.application_suffix()
Exemplo n.º 10
0
 def static_library_filename(self, target_name):
     return configurations.build_dir() + "/lib" + target_name + ".a"
Exemplo n.º 11
0
 def object_filename(self, target_name, source_filename):
     return configurations.build_dir() + "/build." + target_name + "/" + source_filename + ".o"
Exemplo n.º 12
0
 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])