WOWCube Docs logo
WOWCube Docs
Mission Control
Section Shortcuts
APIExamplesSourceWOWConnectChangelog
Filters
SDK and language defaults persist in cookies.
SDK version
Navigation Tree
Collapsed by default, focused on the active path.
Made byMcKay Seamons
GitHub
  1. Home
  2. Docs
  3. Examples
  4. wowcubeapp-build.json
Mission NodeSDK 6.3C++renderingProject Included

wowcubeapp-build.json

Examples / SDK 6.3 / C++ / rendering / Gfx Engine - Bitmaps / project
wowcubeapp-build.json
JSON
1{
2 "name": "Bitmaps",
3 "version": "1.0.0",
4 "sdkVersion": "6.3",
5 "appIcon": {
6 "path": "assets/icon.png"
7 },
8 "sourceFile": "src/Bitmaps.cpp",
9 "scriptFile": "binary/Bitmaps.wasm",
10 "imageAssets": [
11 {
12 "path": "assets/images/bkg.png",
13 "alias": "bkg.png",
14 "encoding": "RGB565"
15 },
16 {
17 "path": "assets/images/fg.png",
18 "alias": "fg.png",
19 "encoding": "RGB565"
20 },
21 {
22 "path": "assets/images/planet1.png",
23 "alias": "planet1.png",
24 "encoding": "RGB565"
25 },
26 {
27 "path": "assets/images/planet2.png",
28 "alias": "planet2.png",
29 "encoding": "RGB565"
30 },
31 {
32 "path": "assets/images/planet3.png",
33 "alias": "planet3.png",
34 "encoding": "RGB565"
35 },
36 {
37 "path": "assets/images/star.png",
38 "alias": "star.png",
39 "encoding": "RGB565"
40 }
41 ],
42 "soundAssets": [],
43 "appFlags": 0,
44 "language": "cpp",
45 "interpreter": "wasm",
46 "projectOptions": {
47 "cpp": {
48 "defines": "DUMMY_DEFINE=1;DUMMY_DEFINE2=2",
49 "flags": "-std=c++11 -Oz -flto -fno-exceptions -mexec-model=reactor -z stack-size=10240",
50 "compilerSettings": ",--initial-memory=65536,--export=run,--export=on_init,--strip-all,--lto-O3",
51 "includeFolders": [
52 "",
53 "",
54 "",
55 "",
56 ""
57 ]
58 }
59 }
60}
Wrapped for easier reading. Turn wrap off to inspect exact line lengths.
Context Rail

Project files

GfxBitmaps.cpp
project/src/GfxBitmaps.cpp
GfxBitmaps.h
project/src/GfxBitmaps.h
wowcubeapp-build.json
project/wowcubeapp-build.json
Context Rail

Related nodes

Gfx Engine - Bitmaps
Examples / SDK 6.3 / C++ / rendering
info.json
Examples / SDK 6.3 / C++ / rendering / Gfx Engine - Bitmaps
GfxBitmaps.cpp
Examples / SDK 6.3 / C++ / rendering / Gfx Engine - Bitmaps / project / src
GfxBitmaps.h
Examples / SDK 6.3 / C++ / rendering / Gfx Engine - Bitmaps / project / src
Previous Node
GfxBitmaps.h
Examples / SDK 6.3 / C++ / rendering / Gfx Engine - Bitmaps / project / src
Next Node
Gfx Engine - Offscreen Render Targets
Examples / SDK 6.3 / C++ / rendering