mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-21 11:31:07 +00:00
aedi: handle pcre-config creation
This commit is contained in:
parent
d992328918
commit
453f802144
1 changed files with 4 additions and 0 deletions
|
@ -428,6 +428,10 @@ class PcreTarget(ConfigureMakeStaticDependencyTarget):
|
|||
def detect(self, state: BuildState) -> bool:
|
||||
return os.path.exists(state.source + 'pcre.h.in')
|
||||
|
||||
def post_build(self, state: BuildState):
|
||||
super().post_build(state)
|
||||
self.update_config_script(state.install_path + '/bin/pcre-config')
|
||||
|
||||
|
||||
class SndFileTarget(CMakeStaticDependencyTarget):
|
||||
def __init__(self, name='sndfile'):
|
||||
|
|
Loading…
Reference in a new issue