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