-added ECS uda attributes -added InputStruct version switch (gets update() input as structure of arrays) -initial (WIP) EntitiesData update() input structure compile time parsing
45 lines
No EOL
859 B
JSON
Executable file
45 lines
No EOL
859 B
JSON
Executable file
{
|
|
"name": "ecs",
|
|
"authors": [
|
|
"Michał Masiukiewicz", "Dawid Masiukiewicz"
|
|
],
|
|
"description": "Dynamic Entity Component System",
|
|
"copyright": "Copyright © 2017-2018, Michał Masiukiewicz, Dawid Masiukiewicz",
|
|
"license": "BSD",
|
|
"sourcePaths" : ["source\/"],
|
|
"dflags-posix-ldc": [
|
|
"-defaultlib=phobos2-ldc,druntime-ldc"
|
|
],
|
|
"versions": [
|
|
"InputStruct"
|
|
],
|
|
"configurations" : [
|
|
{
|
|
"name" : "library",
|
|
"targetType" : "library"
|
|
},
|
|
{
|
|
"name" : "tests",
|
|
"sourcePaths" : ["source\/","tests\/"],
|
|
"targetType" : "executable",
|
|
"excludedSourceFiles":[
|
|
"source\/win_dll.d"
|
|
]
|
|
},
|
|
{
|
|
"name" : "dynlib",
|
|
"targetType" : "dynamicLibrary",
|
|
"dflags-linux-ldc" : [
|
|
"-defaultlib=phobos2-ldc"
|
|
]
|
|
},
|
|
{
|
|
"name" : "sources",
|
|
"targetType" : "dynamicLibrary",
|
|
"dflags": [
|
|
"-Hdimport/",
|
|
"-op"
|
|
]
|
|
}
|
|
]
|
|
} |