aedi: remove explicit os version for slade

This commit is contained in:
alexey.lysiuk 2021-10-31 11:22:30 +02:00
parent 6e61bdc089
commit 9855c24aa6

View file

@ -178,10 +178,6 @@ class SladeTarget(CMakeMainTarget):
def __init__(self, name='slade'): def __init__(self, name='slade'):
super().__init__(name) super().__init__(name)
# This should match the actual version of WxWidgets
self.os_version['x86_64'] = StrictVersion('10.10')
self.sdk_version['x86_64'] = StrictVersion('10.11')
def prepare_source(self, state: BuildState): def prepare_source(self, state: BuildState):
# TODO: support both stable and master branches # TODO: support both stable and master branches
state.checkout_git('https://github.com/sirjuddington/SLADE.git', branch='stable') state.checkout_git('https://github.com/sirjuddington/SLADE.git', branch='stable')