*added ImGUI styles
 *added new assets (fonts, shaders)
 *added cimgui.dll
 *added imports for bindbc-sdl (for WASM)
 *added simple demo
 *added demo launcher
 *added snake demo
 *impoved demo utils
 *added cimgui.bc library for WASM
-improved wasm build script
-small change in vector
This commit is contained in:
Mergul 2019-11-12 20:33:31 +01:00
parent 73f2aa6861
commit cb7609dcaa
82 changed files with 11188 additions and 413 deletions

View file

@ -5,21 +5,19 @@
],
"description": "Dynamic Entity Component System examples utils",
"copyright": "Copyright © 2018-2019, Michał Masiukiewicz, Dawid Masiukiewicz",
"license": "BSD",
"license": "BSD 3-clause",
"sourcePaths" : [
"source\/"
"source",
"../external/sources"
],
"importPaths": [
"source"
],
"dflags-posix-ldc": [
"-defaultlib=phobos2-ldc,druntime-ldc"
],
"dflagss": [
"-betterC"
"source",
"../external/imports",
"../external/sources"
],
"dependencies": {
"bindbc-sdl":"0.10.1"
"bindbc-sdl":"0.13.0",
"ecs":{"path":"../../"}
},
"versions": [
"BindSDL_Image",
@ -32,7 +30,8 @@
"targetType" : "library",
"subConfigurations":
{
"bindbc-sdl": "static"
"bindbc-sdl": "static",
"ecs":"library"
}
},
{
@ -43,7 +42,8 @@
],
"subConfigurations":
{
"bindbc-sdl": "staticBC"
"bindbc-sdl": "staticBC",
"ecs":"library-betterC"
}
}
]