This repository has been archived on 2023-12-12. You can view files and clone it, but cannot push or open issues or pull requests.
game-project/dub.json
2023-10-02 23:41:01 +13:00

78 lines
No EOL
1.3 KiB
JSON

{
"authors": [
"$$$$$$"
],
"buildTypes": {
"debug": {
"buildOptions": [
"debugMode",
"debugInfo"
]
},
"release": {
"buildOptions": [
"releaseMode",
"inline",
"noBoundsCheck",
"optimize"
]
},
"unittest": {
"buildOptions": [
"debugMode",
"debugInfo",
"unittests"
]
}
},
"configurations": [
{
"name": "linux-build",
"platforms": [
"linux"
],
"postBuildCommands": [
"cp ./lib$ARCH/*.dll ../bin"
],
"targetPath": "./bin",
"targetType": "executable"
},
{
"name": "windows-build",
"platforms": [
"windows"
],
"libs" : ["raylib"],
"targetPath": "./bin$ARCH",
"targetType": "executable"
},
{
"lflags": [
"-subsystem:windows",
"-entry:mainCRTStartup"
],
"libs" : ["raylib"],
"name": "windows-release",
"platforms": [
"windows"
],
"targetPath": "./release$ARCH/pzdv",
"targetType": "executable"
}
],
"copyright": "Copyright © 2023, $$$$$$",
"dependencies": {
"grimoire": {
"repository": "git+https://github.com/Enalye/grimoire",
"version": "c4b541f"
},
"raylib-d": "~>4.5.1",
"raylib-d:install": "~>4.5.1"
},
"description": "",
"license": "proprietary",
"name": "$$$$$$",
"targetName": "default_target",
"targetType": "executable",
"workingDirectory": "."
}