mirror of
https://github.com/YGGverse/xash3d-fwgs.git
synced 2025-01-17 18:40:02 +00:00
msdev: print abspath
This commit is contained in:
parent
239c13da28
commit
9421963b29
@ -594,10 +594,11 @@ class MsDevProject(MsDev):
|
||||
for uselib_inc in uselib_incs:
|
||||
Logs.pprint('YELLOW', 'include ' + uselib_inc)
|
||||
Logs.pprint('YELLOW', 'top_dir: ' + bld.top_dir)
|
||||
Logs.pprint('YELLOW', 'path: ' + bld.path)
|
||||
root = bld.top_dir.abspath().replace('\\', '/')
|
||||
Logs.pprint('YELLOW', 'path: ' + bld.path.abspath())
|
||||
Logs.pprint('YELLOW', 'root: ' + bld.root.abspath())
|
||||
root = bld.root.abspath().replace('\\', '/')
|
||||
pref = os.path.commonprefix([root, uselib_inc])
|
||||
Logs.pprint('YELLOW', 'pref: ' + pref)
|
||||
Logs.pprint('YELLOW', 'pref: ' + pref.abspath())
|
||||
if pref == root:
|
||||
node = bld.top_dir.find_dir(uselib_inc)
|
||||
if node:
|
||||
|
Loading…
x
Reference in New Issue
Block a user