mirror of
https://github.com/TTimo/GtkRadiant.git
synced 2024-11-10 07:11:54 +00:00
Ensure macOS build targets 10.9 SDK.
This commit is contained in:
parent
ce6af0b465
commit
af11890c68
1 changed files with 2 additions and 0 deletions
|
@ -263,6 +263,8 @@ class Config:
|
|||
|
||||
# On Mac, we pad headers so that we may rewrite them for packaging
|
||||
if ( self.platform == 'Darwin' ) :
|
||||
env.Append( CFLAGS = [ '-mmacosx-version-min=10.9' ] )
|
||||
env.Append( CXXFLAGS = [ '-mmacosx-version-min=10.9' ] )
|
||||
env.Append( LINKFLAGS = [ '-headerpad_max_install_names' ] )
|
||||
|
||||
def CheckoutOrUpdate( self, svnurl, path ):
|
||||
|
|
Loading…
Reference in a new issue