equal
deleted
inserted
replaced
136 |
136 |
137 sources = set([os.path.join(actual_root, p) for p in ext_sources]) |
137 sources = set([os.path.join(actual_root, p) for p in ext_sources]) |
138 if not system_zstd: |
138 if not system_zstd: |
139 sources.update([os.path.join(actual_root, p) for p in zstd_sources]) |
139 sources.update([os.path.join(actual_root, p) for p in zstd_sources]) |
140 if support_legacy: |
140 if support_legacy: |
141 sources.update([os.path.join(actual_root, p) for p in zstd_sources_legacy]) |
141 sources.update( |
|
142 [os.path.join(actual_root, p) for p in zstd_sources_legacy] |
|
143 ) |
142 sources = list(sources) |
144 sources = list(sources) |
143 |
145 |
144 include_dirs = set([os.path.join(actual_root, d) for d in ext_includes]) |
146 include_dirs = set([os.path.join(actual_root, d) for d in ext_includes]) |
145 if not system_zstd: |
147 if not system_zstd: |
146 include_dirs.update([os.path.join(actual_root, d) for d in zstd_includes]) |
148 include_dirs.update( |
|
149 [os.path.join(actual_root, d) for d in zstd_includes] |
|
150 ) |
147 if support_legacy: |
151 if support_legacy: |
148 include_dirs.update( |
152 include_dirs.update( |
149 [os.path.join(actual_root, d) for d in zstd_includes_legacy] |
153 [os.path.join(actual_root, d) for d in zstd_includes_legacy] |
150 ) |
154 ) |
151 include_dirs = list(include_dirs) |
155 include_dirs = list(include_dirs) |