X Tutup
Skip to content

Commit 898910d

Browse files
committed
Update automate.py, copy cef_version.h when creating prebuilt binaries
1 parent f5dc3a5 commit 898910d

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

tools/automate.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -834,6 +834,12 @@ def copy_app(app):
834834
shutil.copy(os.path.join(src, "README.txt"), dst)
835835
shutil.copy(os.path.join(src, "LICENSE.txt"), dst)
836836

837+
# Copy cef_version.h
838+
cef_version_file = os.path.join(dst, "cef_version_{os_postfix}.h".format(
839+
os_postfix=OS_POSTFIX))
840+
shutil.copy(os.path.join(src, "include", "cef_version.h"),
841+
cef_version_file)
842+
837843
print("[automate.py] OK prebuilt binaries created in '%s/'" % dst)
838844

839845

0 commit comments

Comments
 (0)
X Tutup