bubel-ecs/demos/utils/dub.json
Mergul 56f870bac6 -updated README.md
-fixed shaders for GL2
-added Entity selection tool
-throw out tools from "Demo" window to "Tools" window
-change ComboBox to Tabs for Tools
-Added more verbose tips
-Improved and fixed BrickBreaker collisions
-fixed simple DUB issue
2021-03-01 12:16:02 +01:00

48 lines
No EOL
875 B
JSON

{
"name": "ecs_utils",
"authors": [
"Michał Masiukiewicz", "Dawid Masiukiewicz"
],
"description": "Dynamic Entity Component System examples utils",
"copyright": "Copyright © 2018-2019, Michał Masiukiewicz, Dawid Masiukiewicz",
"license": "BSD 3-clause",
"sourcePaths" : [
"source",
"../external/sources"
],
"importPaths": [
"source",
"../external/sources"
],
"dependencies": {
"bindbc-sdl":"0.19.0",
"bubel_ecs":{"path":"../../"}
},
"versions": [
"BindSDL_Image",
"SDL_2010"
],
"configurations" : [
{
"name" : "default",
"targetType" : "library",
"subConfigurations":
{
"bindbc-sdl": "static",
"ecs":"library"
}
},
{
"name" : "betterC",
"targetType" : "library",
"dflags": [
"-betterC"
],
"subConfigurations":
{
"bindbc-sdl": "staticBC",
"ecs":"library-betterC"
}
}
]
}