Skip to content

Commit

Permalink
Don't precompute dependency data for the toolchain wrapper under Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
adamrehn committed Jul 31, 2020
1 parent e329ba3 commit 16c0534
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions conan_ue4cli/commands/precompute.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,10 @@ def precompute(manager, argv):
# Aggregate the data for each of our dependencies
for dependency in info['dependencies']:

# Don't precompute data for the toolchain wrapper under Linux
if dependency['name'] == 'toolchain-wrapper':
continue

# Eliminate any include directories or library directories that fall outside the package's root directory
pathFilter = lambda paths: list([p for p in paths if p.startswith(dependency['rootpath'])])
dependency['include_paths'] = pathFilter(dependency['include_paths'])
Expand Down

0 comments on commit 16c0534

Please sign in to comment.