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.1C++GFX SamplesProject Included

wowcubeapp-build.json

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

Project files

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

Related nodes

Jukebox
Examples / SDK 6.1 / C++ / GFX Samples
info.json
Examples / SDK 6.1 / C++ / GFX Samples / Jukebox
Countdown.cpp
Examples / SDK 6.1 / C++ / GFX Samples / Jukebox / project / src
Countdown.h
Examples / SDK 6.1 / C++ / GFX Samples / Jukebox / project / src
Previous Node
Jukebox.h
Examples / SDK 6.1 / C++ / GFX Samples / Jukebox / project / src
Next Node
Messaging
Examples / SDK 6.1 / C++ / network