mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2025-01-31 12:00:35 +00:00
aedi: disable jpeg-turbo shared libs
previously, ENABLE_SHARED=NO was set for all cmake targets
This commit is contained in:
parent
0999c82b44
commit
c78ffda005
1 changed files with 4 additions and 1 deletions
|
@ -270,7 +270,10 @@ class JpegTurboTarget(CMakeStaticDependencyTarget):
|
|||
return state.has_source_file('turbojpeg.h')
|
||||
|
||||
def configure(self, state: BuildState):
|
||||
state.options['WITH_TURBOJPEG'] = 'NO'
|
||||
opts = state.options
|
||||
opts['ENABLE_SHARED'] = 'NO'
|
||||
opts['WITH_TURBOJPEG'] = 'NO'
|
||||
|
||||
super().configure(state)
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue