diff options
Diffstat (limited to 'project/toolset.py')
-rw-r--r-- | project/toolset.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/project/toolset.py b/project/toolset.py index f6fc76f..d1a2d29 100644 --- a/project/toolset.py +++ b/project/toolset.py @@ -76,10 +76,12 @@ class Toolset(abc.ABC): def bootstrap_sh_args(): return [] - def cmake_args(self, build_dir, platform): + @staticmethod + def cmake_args(build_dir, platform): return [] - def build_system_args(self): + @staticmethod + def build_system_args(): return [] @staticmethod |