forked from cztomczak/cefpython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcefpython_version.h
More file actions
32 lines (25 loc) · 910 Bytes
/
cefpython_version.h
File metadata and controls
32 lines (25 loc) · 910 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// Copyright (c) 2016 The CEF Python authors. All rights reserved.
// The cef_version_win.h and other platform dependent headers
// come from CEF binary distributions. These header files are
// generated by CEF during builds.
#pragma once
#include "base.h"
#include "cef_version_" OS_POSTFIX ".h"
#define CEFPYTHON_VERSION_MAJOR 47
#define CEFPYTHON_VERSION_MINOR 0
#define CEFPYTHON_VERSION \
STR(CEFPYTHON_VERSION_MAJOR) "." \
STR(CEFPYTHON_VERSION_MINOR)
// @todo: overwrite during build
// Possible values: "stable", "rc", "alpha"
#define CEFPYTHON_RELEASE_TYPE
// @todo: overwrite during build
#define CEFPYTHON_COMMIT_NUMBER
#define CEFPYTHON_COMMIT_HASH
#define CEFPYTHON_COMMIT_SHORT
#define CHROME_VERSION \
STR(CHROME_VERSION_MAJOR) "." \
STR(CHROME_VERSION_MINOR) "." \
STR(CHROME_VERSION_BUILD) "." \
STR(CHROME_VERSION_PATCH)
#define CHROMIUM_VERSION CHROME_VERSION