diff options
Diffstat (limited to 'mesonbuild/backend')
-rw-r--r-- | mesonbuild/backend/backends.py | 1 | ||||
-rw-r--r-- | mesonbuild/backend/ninjabackend.py | 2 | ||||
-rw-r--r-- | mesonbuild/backend/xcodebackend.py | 4 |
3 files changed, 0 insertions, 7 deletions
diff --git a/mesonbuild/backend/backends.py b/mesonbuild/backend/backends.py index bc2b74a..6218156 100644 --- a/mesonbuild/backend/backends.py +++ b/mesonbuild/backend/backends.py @@ -1347,7 +1347,6 @@ class Backend: incs += compiler.get_include_args(i, False) return incs - def eval_custom_target_command( self, target: build.CustomTarget, absolute_outputs: bool = False) -> \ T.Tuple[T.List[str], T.List[str], T.List[str]]: diff --git a/mesonbuild/backend/ninjabackend.py b/mesonbuild/backend/ninjabackend.py index 59f94b1..2e2ff6d 100644 --- a/mesonbuild/backend/ninjabackend.py +++ b/mesonbuild/backend/ninjabackend.py @@ -2149,7 +2149,6 @@ https://gcc.gnu.org/bugzilla/show_bug.cgi?id=47485''')) self.add_rule(NinjaRule(rule, command, [], description, deps=deps, depfile=depfile)) - def generate_scanner_rules(self): rulename = 'depscan' if rulename in self.ruledict: @@ -2162,7 +2161,6 @@ https://gcc.gnu.org/bugzilla/show_bug.cgi?id=47485''')) rule = NinjaRule(rulename, command, args, description) self.add_rule(rule) - def generate_compile_rules(self): for for_machine in MachineChoice: clist = self.environment.coredata.compilers[for_machine] diff --git a/mesonbuild/backend/xcodebackend.py b/mesonbuild/backend/xcodebackend.py index 080a184..3732570 100644 --- a/mesonbuild/backend/xcodebackend.py +++ b/mesonbuild/backend/xcodebackend.py @@ -451,7 +451,6 @@ class XCodeBackend(backends.Backend): self.generator_buildfile_ids[k] = buildfile_ids self.generator_fileref_ids[k] = fileref_ids - def generate_native_frameworks_map(self): self.native_frameworks = {} self.native_frameworks_fileref = {} @@ -1027,7 +1026,6 @@ class XCodeBackend(backends.Backend): if i: children_array.add_item(i) - def generate_project_tree(self): tree_info = FileTreeEntry() for tname, t in self.build_targets.items(): @@ -1275,7 +1273,6 @@ class XCodeBackend(backends.Backend): gen_dict.add_item('shellScript', cmdstr) gen_dict.add_item('showEnvVarsInLog', 0) - def generate_pbx_sources_build_phase(self, objects_dict): for name in self.source_phase: phase_dict = PbxDict() @@ -1392,7 +1389,6 @@ class XCodeBackend(backends.Backend): settings_dict.add_item('SYMROOT', '"%s/build"' % self.environment.get_build_dir()) bt_dict.add_item('name', f'"{buildtype}"') - def determine_internal_dep_link_args(self, target, buildtype): links_dylib = False dep_libs = [] |