mirror of
https://gitlab.com/ita1024/waf.git
synced 2024-11-22 01:46:15 +01:00
Typo process_uselib_vars -> propagate_uselib_vars #2005
This commit is contained in:
parent
fe1bb1b58a
commit
5468e0031b
@ -89,7 +89,7 @@ def build(bld):
|
||||
source=['src/test.cpp'],
|
||||
includes='include',
|
||||
target='MyExe',
|
||||
use='MyDynLib'
|
||||
use='MyDynLib STD11'
|
||||
)
|
||||
|
||||
# Make .dylib shared libraries
|
||||
|
@ -470,7 +470,7 @@ class PBXProject(XCodeNode):
|
||||
return None
|
||||
|
||||
@TaskGen.feature('c', 'cxx')
|
||||
@TaskGen.after('process_uselib_vars', 'apply_incpaths')
|
||||
@TaskGen.after('propagate_uselib_vars', 'apply_incpaths')
|
||||
def process_xcode(self):
|
||||
bld = self.bld
|
||||
try:
|
||||
@ -562,9 +562,6 @@ def process_xcode(self):
|
||||
libs = Utils.to_list(self.env.STLIB) + Utils.to_list(self.env.LIB)
|
||||
libs = ' '.join(bld.env['STLIB_ST'] % t for t in libs)
|
||||
|
||||
linkflags = bld.env['LINKFLAGS']
|
||||
ldflags = bld.env['LDFLAGS']
|
||||
|
||||
# Override target specific build settings
|
||||
bldsettings = {
|
||||
'HEADER_SEARCH_PATHS': ['$(inherited)'] + self.env['INCPATHS'],
|
||||
|
Loading…
Reference in New Issue
Block a user