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++basicsProject Included

wowcubeapp-build.json

Examples / SDK 6.1 / C++ / basics / Working with Emulator / project
wowcubeapp-build.json
JSON
1{
2 "name": "WorkingWithEmulator",
3 "version": "1.0.0",
4 "sourceFile": "src/WorkingWithEmulator.cpp",
5 "scriptFile": "binary/WorkingWithEmulator.wasm",
6 "appIcon": {
7 "path": "assets/icon.png"
8 },
9 "soundAssetsDir": "assets/sounds",
10 "imageAssetsDir": "assets/images",
11 "sdkVersion": "6.1",
12 "appFlags": 0,
13 "language": "cpp",
14 "interpreter": "wasm",
15 "projectOptions": {
16 "cpp": {
17 "defines": "DUMMY_DEFINE=1;DUMMY_DEFINE2=2",
18 "flags": "-std=c++11 -Oz -flto -fno-exceptions -mexec-model=reactor -z stack-size=10240",
19 "compilerSettings": ",--initial-memory=65536,--export=run,--export=on_init,--strip-all,--lto-O3",
20 "includeFolders": [
21 "",
22 "",
23 "",
24 "",
25 ""
26 ]
27 }
28 },
29 "imageAssets": [],
30 "soundAssets": []
31}
Wrapped for easier reading. Turn wrap off to inspect exact line lengths.
Context Rail

Project files

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

Related nodes

Working with Emulator
Examples / SDK 6.1 / C++ / basics
info.json
Examples / SDK 6.1 / C++ / basics / Working with Emulator
WorkingWithEmulator.cpp
Examples / SDK 6.1 / C++ / basics / Working with Emulator / project / src
WorkingWithEmulator.h
Examples / SDK 6.1 / C++ / basics / Working with Emulator / project / src
Previous Node
WorkingWithEmulator.h
Examples / SDK 6.1 / C++ / basics / Working with Emulator / project / src
Next Node
Strings and Arrays
Examples / SDK 6.1 / C++ / basics