forked from codeoncanvas/Cinder-CEF
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcinderblock.xml
100 lines (80 loc) · 4.08 KB
/
cinderblock.xml
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<?xml version="1.0" encoding="UTF-8" ?>
<cinder>
<block
name="Cinder-CEF"
id=""
author="Code On Canvas"
summary="Webviews in Cinder using Chrome Embedded Framework"
license=""
url=""
git="[email protected]:codeoncanvas/cinder-cef.git"
version=""
library="https://bitbucket.org/chromiumembedded/cef"
>
<includePath>libs/cef</includePath>
<includePath>libs/cef/include</includePath>
<includePath system="true">libs/cef/include</includePath>
<header>src/ciCEF.h</header>
<header>src/ciCEFBrowserClient.h</header>
<header>src/ciCEFClientApp.h</header>
<header>src/ciCEFRenderHandler.h</header>
<header>src/ciCEFV8ExtensionHandler.h</header>
<source>src/ciCEF.cpp</source>
<source>src/ciCEFBrowserClient.cpp</source>
<!-- <source>src/ciCEFRenderHandler.cpp</source> -->
<platform os="msw">
<includePath>libs/cef/include/base</includePath>
<includePath>src</includePath>
<header>src/cefListV8Converter.hpp</header>
<source>src/cefListV8Converter.cpp</source>
<source>src/ciCEFClientApp.cpp</source>
<source>src/ciCEFV8ExtensionHandler.cpp</source>
<platform config="release">
<staticLibrary>libs/cef/lib/vs/x64/Release/libcef.lib</staticLibrary>
<staticLibrary>libs/cef/lib/vs/x64/Release/libcef_dll_wrapper.lib</staticLibrary>
</platform>
<platform config="debug">
<staticLibrary>libs/cef/lib/vs/x64/Debug/libcef.lib</staticLibrary>
<staticLibrary>libs/cef/lib/vs/x64/Debug/libcef_dll_wrapper.lib</staticLibrary>
</platform>
<buildCopy>libs/cef/export/vs/x64/</buildCopy>
<buildCopy>libs/cef/export/vs/x64/cef.pak</buildCopy>
<buildCopy>libs/cef/export/vs/x64/cef_100_percent.pak</buildCopy>
<buildCopy>libs/cef/export/vs/x64/cef_200_percent.pak</buildCopy>
<buildCopy>libs/cef/export/vs/x64/cef_extensions.pak</buildCopy>
<buildCopy>libs/cef/export/vs/x64/chrome_elf.dll</buildCopy>
<buildCopy>libs/cef/export/vs/x64/d3dcompiler_43.dll</buildCopy>
<buildCopy>libs/cef/export/vs/x64/d3dcompiler_47.dll</buildCopy>
<buildCopy>libs/cef/export/vs/x64/devtools_resources.pak</buildCopy>
<buildCopy>libs/cef/export/vs/x64/icudtl.dat</buildCopy>
<buildCopy>libs/cef/export/vs/x64/libcef.dll</buildCopy>
<buildCopy>libs/cef/export/vs/x64/libEGL.dll</buildCopy>
<buildCopy>libs/cef/export/vs/x64/libGLESv2.dll</buildCopy>
<buildCopy>libs/cef/export/vs/x64/natives_blob.bin</buildCopy>
<buildCopy>libs/cef/export/vs/x64/snapshot_blob.bin</buildCopy>
<buildCopy>libs/cef/export/vs/x64/v8_context_snapshot.bin</buildCopy>
<buildCopy>libs/cef/export/vs/x64/swiftshader</buildCopy>
<buildCopy>libs/cef/export/vs/x64/locales</buildCopy>
</platform>
<platform os="macosx">
<headerPattern>libs/cef/include/*.h</headerPattern>
<headerPattern>libs/cef/include/base/*.h</headerPattern>
<headerPattern>libs/cef/include/capi/*.h</headerPattern>
<headerPattern>libs/cef/include/capi/test/*.h</headerPattern>
<headerPattern>libs/cef/include/capi/views/*.h</headerPattern>
<headerPattern>libs/cef/include/internal/*.h</headerPattern>
<headerPattern>libs/cef/include/test/*.h</headerPattern>
<headerPattern>libs/cef/include/wrapper/*.h</headerPattern>
<!-- visit the following for extra manual steps on macOS:
https://github.com/codeoncanvas/Cinder-CEF/blob/master/osx_notes.md#adding-cef-to-a-new-project -->
<!--
<source>src/ciCEF.mm</source>
<framework>libs/cef/lib/osx/Chromium Embedded Framework.framework</framework>
<staticLibrary>libs/cef/lib/osx/libcef_dll_wrapper.a</staticLibrary>
<frameworkPath>libs/cef/lib/osx</frameworkPath>
<buildCopy destination="frameworks">libs/cef/lib/osx/Chromium Embedded Framework.framework</buildCopy>
<setting name="LD_RUNPATH_SEARCH_PATHS">$(inherited) @executable_path/../Frameworks</setting>
-->
</platform>
</block>
</cinder>