We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f5dc3a5 commit 898910dCopy full SHA for 898910d
tools/automate.py
@@ -834,6 +834,12 @@ def copy_app(app):
834
shutil.copy(os.path.join(src, "README.txt"), dst)
835
shutil.copy(os.path.join(src, "LICENSE.txt"), dst)
836
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
+
843
print("[automate.py] OK prebuilt binaries created in '%s/'" % dst)
844
845
0 commit comments