updating
This commit is contained in:
parent
1a736497e0
commit
84dfaf40ac
|
@ -0,0 +1,59 @@
|
||||||
|
{
|
||||||
|
"authors": [
|
||||||
|
"rillki"
|
||||||
|
],
|
||||||
|
"configurations": [
|
||||||
|
{
|
||||||
|
"lflags": [
|
||||||
|
"-framework",
|
||||||
|
"IOKit",
|
||||||
|
"-framework",
|
||||||
|
"Cocoa",
|
||||||
|
"-framework",
|
||||||
|
"OpenGL"
|
||||||
|
],
|
||||||
|
"libs": [
|
||||||
|
"raylib"
|
||||||
|
],
|
||||||
|
"name": "osx-app",
|
||||||
|
"platforms": [
|
||||||
|
"osx"
|
||||||
|
],
|
||||||
|
"targetType": "executable"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"libs": [
|
||||||
|
"raylib",
|
||||||
|
"GL",
|
||||||
|
"m",
|
||||||
|
"pthread",
|
||||||
|
"dl",
|
||||||
|
"rt",
|
||||||
|
"X11"
|
||||||
|
],
|
||||||
|
"name": "linux-app",
|
||||||
|
"platforms": [
|
||||||
|
"linux"
|
||||||
|
],
|
||||||
|
"targetType": "executable"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"libs": [
|
||||||
|
"raylib"
|
||||||
|
],
|
||||||
|
"name": "windows-app",
|
||||||
|
"platforms": [
|
||||||
|
"windows"
|
||||||
|
],
|
||||||
|
"targetType": "executable"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"copyright": "Copyright © 2021, rillki",
|
||||||
|
"dependencies": {
|
||||||
|
"raylib-d": "~>4.5.0"
|
||||||
|
},
|
||||||
|
"description": "D/Raylib minimal setup",
|
||||||
|
"license": "no license",
|
||||||
|
"name": "d-raylib-project-template",
|
||||||
|
"targetPath": "bin"
|
||||||
|
}
|
|
@ -2,56 +2,14 @@
|
||||||
"authors": [
|
"authors": [
|
||||||
"rillki"
|
"rillki"
|
||||||
],
|
],
|
||||||
"configurations": [
|
|
||||||
{
|
|
||||||
"lflags": [
|
|
||||||
"-framework",
|
|
||||||
"IOKit",
|
|
||||||
"-framework",
|
|
||||||
"Cocoa",
|
|
||||||
"-framework",
|
|
||||||
"OpenGL"
|
|
||||||
],
|
|
||||||
"libs": [
|
|
||||||
"raylib"
|
|
||||||
],
|
|
||||||
"name": "osx-app",
|
|
||||||
"platforms": [
|
|
||||||
"osx"
|
|
||||||
],
|
|
||||||
"targetType": "executable"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"libs": [
|
|
||||||
"raylib",
|
|
||||||
"GL",
|
|
||||||
"m",
|
|
||||||
"pthread",
|
|
||||||
"dl",
|
|
||||||
"rt",
|
|
||||||
"X11"
|
|
||||||
],
|
|
||||||
"name": "linux-app",
|
|
||||||
"platforms": [
|
|
||||||
"linux"
|
|
||||||
],
|
|
||||||
"targetType": "executable"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"libs": [
|
|
||||||
"raylib"
|
|
||||||
],
|
|
||||||
"name": "windows-app",
|
|
||||||
"platforms": [
|
|
||||||
"windows"
|
|
||||||
],
|
|
||||||
"targetType": "executable"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"copyright": "Copyright © 2021, rillki",
|
"copyright": "Copyright © 2021, rillki",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"raylib-d": "~>4.5.0"
|
"raylib-d": "~>5.0.1"
|
||||||
},
|
},
|
||||||
|
"libs": [ "raylib" ],
|
||||||
|
"lflags-posix" : ["-L."],
|
||||||
|
"lflags-osx" : ["-rpath", "@executable_path/"],
|
||||||
|
"lflags-linux" : ["-rpath=$$ORIGIN"],
|
||||||
"description": "D/Raylib minimal setup",
|
"description": "D/Raylib minimal setup",
|
||||||
"license": "no license",
|
"license": "no license",
|
||||||
"name": "d-raylib-project-template",
|
"name": "d-raylib-project-template",
|
||||||
|
|
|
@ -1,10 +1,6 @@
|
||||||
{
|
{
|
||||||
"fileVersion": 1,
|
"fileVersion": 1,
|
||||||
"versions": {
|
"versions": {
|
||||||
"ddmp": "0.0.1-0.dev.3",
|
"raylib-d": "5.0.1"
|
||||||
"fluent-asserts": "0.13.3",
|
|
||||||
"libdparse": "0.14.0",
|
|
||||||
"raylib-d": "4.5.0",
|
|
||||||
"stdx-allocator": "2.77.5"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue