bubel-ecs/demos/dub.json
Mergul 5894e76540 -updated wasm build scripts
-multitheaded wasm tests
-updated dub.json
-fixed thread pool assert issue
-added windows libraries
-added demos:
 *launcher
 *simple
 *snake
 *space invaders (WIP)
 *statistics window
 *changable gui styles
 *tips window
 *profile window
 *demo window with automatic generation
 *multithreaded job updater
2019-11-19 10:37:34 +01:00

40 lines
No EOL
801 B
JSON

{
"name": "demo",
"authors": [
"Michał Masiukiewicz", "Dawid Masiukiewicz"
],
"description": "Dynamic Entity Component System simple example",
"copyright": "Copyright © 2018-2019, Michał Masiukiewicz, Dawid Masiukiewicz",
"license": "BSD 3-clause",
"dependencies": {
"ecs_utils":{"path":"utils/"}
},
"sourcePaths": [
"source"
],
"importPaths": [
"source"
],
"libs-windows-x86_64": ["libs/windows/x64/SDL2","libs/windows/x64/SDL2_Image","libs/windows/x64/cimgui"],
"configurations" : [
{
"name" : "default",
"targetType" : "executable",
"subConfigurations":
{
"ecs_utils":"default"
}
},
{
"name" : "betterC",
"targetType" : "executable",
"dflags": [
"-betterC"
],
"subConfigurations":
{
"ecs_utils":"betterC"
}
}
]
}