mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-10 06:31:37 +00:00
aedi: remove version check from glslang target
This commit is contained in:
parent
77702b955a
commit
6a6fbe9538
1 changed files with 0 additions and 4 deletions
|
@ -97,8 +97,6 @@ class EricWToolsTarget(base.CMakeStaticDependencyTarget):
|
|||
|
||||
|
||||
class GlslangTarget(base.CMakeStaticDependencyTarget):
|
||||
# Build with --os-version-x64=10.15 command line option
|
||||
|
||||
def __init__(self, name='glslang'):
|
||||
super().__init__(name)
|
||||
|
||||
|
@ -111,9 +109,7 @@ class GlslangTarget(base.CMakeStaticDependencyTarget):
|
|||
args = ('python3', 'update_glslang_sources.py')
|
||||
subprocess.run(args, check=True, cwd=state.source, env=state.environment)
|
||||
|
||||
state.validate_minimum_version('10.15') # SPIRV-Tools uses <filesystem>
|
||||
state.options['ENABLE_CTEST'] = 'NO'
|
||||
|
||||
super().configure(state)
|
||||
|
||||
def post_build(self, state: BuildState):
|
||||
|
|
Loading…
Reference in a new issue