bubel-ecs/dub.json
Mergul 3a3a9e0341 Add @nogc UDA, fix some small issues, xmake changes
-add @nogc to some functions where it was missing
-fix compilation issue in mallocator
-fix Meson build
-some work on xmake build
2023-03-23 22:31:20 +01:00

133 lines
No EOL
2.5 KiB
JSON
Executable file

{
"name": "bubel-ecs",
"targetName" : "BubelECS",
"authors": [
"Michał Masiukiewicz", "Dawid Masiukiewicz"
],
"description": "Dynamic Entity Component System",
"copyright": "Copyright © 2018-2023, Michał Masiukiewicz, Dawid Masiukiewicz",
"license": "BSD 3-clause",
"sourcePaths" : ["source/"],
"excludedSourceFiles":[
"source/ecs/traits.d"
],
"configurations" : [
{
"name" : "library",
"targetType" : "library"
},
{
"name" : "tests",
"sourceFiles" : ["tests/tests.d"],
"targetType" : "executable",
"excludedSourceFiles":[
"source/win_dll.d"
]
},
{
"name" : "dynlib",
"targetType" : "dynamicLibrary",
"dflags-linux-ldc" : [
"-defaultlib=phobos2-ldc"
]
},
{
"name" : "sources",
"targetType" : "dynamicLibrary",
"dflags": [
"-Hdimport/",
"-op"
]
},
{
"name": "unittest-runner",
"targetType" : "executable",
"sourcePaths": ["source/","tests/"],
"mainSourceFile":"tests/runner.d",
"excludedSourceFiles":[
"source/win_dll.d",
"tests/tests.d"
],
"dflags": [
"-unittest"
]
},
{
"name": "unittest-runner-cov",
"targetType" : "executable",
"sourcePaths": ["source/","tests/"],
"mainSourceFile":"tests/runner.d",
"excludedSourceFiles":[
"source/win_dll.d",
"tests/tests.d"
],
"dflags": [
"-unittest",
"-cov=ctfe"
]
},
{
"name" : "library-betterC",
"targetType" : "library",
"excludedSourceFiles":[
"source/win_dll.d"
],
"dflags": [
"-betterC",
"-defaultlib="
],
"dflags-gdc": [
"-fno-druntime"
]
},
{
"name" : "dynlib-betterC",
"targetType" : "dynamicLibrary",
"dflags": [
"-betterC"
],
"dflags-ldc": [
"--fvisibility=hidden",
"-link-defaultlib-shared"
],
"dflags-gdc": [
"-fno-druntime",
"-fvisibility=hidden",
"-lpthread"
]
},
{
"name" : "tests-betterC",
"targetType" : "executable",
"sourceFiles" : ["tests/tests.d"],
"excludedSourceFiles":[
"source/win_dll.d"
],
"dflags": [
"-betterC"
],
"dflags-gdc": [
"-fno-druntime",
"-lpthread"
]
},
{
"name": "unittest-runner-betterC",
"targetType" : "executable",
"dflags": [
"-betterC",
"-unittest"
],
"dflags-gdc": [
"-fno-druntime",
"-lpthread"
],
"sourcePaths": ["source/","tests/"],
"mainSourceFile":"tests/runner.d",
"excludedSourceFiles":[
"source/win_dll.d",
"tests/tests.d"
]
}
]
}