Move generated includes to the gen directory

This commit is contained in:
Marshall Greenblatt
2025-01-09 12:03:07 -05:00
parent f6b02f90aa
commit ee5cec12d2
3 changed files with 12 additions and 14 deletions

View File

@ -952,7 +952,7 @@ if mode == 'standard' or mode == 'minimal':
]
for include in generated_includes:
# Debug and Release build should be the same so grab whichever exists.
rel_path = os.path.join('includes', 'cef', 'include', include)
rel_path = os.path.join('gen', 'cef', 'include', include)
src_path = os.path.join(build_dir_release, rel_path)
if not os.path.exists(src_path):
src_path = os.path.join(build_dir_debug, rel_path)