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": [
|
||||
"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"
|
||||
"raylib-d": "~>5.0.1"
|
||||
},
|
||||
"libs": [ "raylib" ],
|
||||
"lflags-posix" : ["-L."],
|
||||
"lflags-osx" : ["-rpath", "@executable_path/"],
|
||||
"lflags-linux" : ["-rpath=$$ORIGIN"],
|
||||
"description": "D/Raylib minimal setup",
|
||||
"license": "no license",
|
||||
"name": "d-raylib-project-template",
|
||||
|
|
|
@ -1,10 +1,6 @@
|
|||
{
|
||||
"fileVersion": 1,
|
||||
"versions": {
|
||||
"ddmp": "0.0.1-0.dev.3",
|
||||
"fluent-asserts": "0.13.3",
|
||||
"libdparse": "0.14.0",
|
||||
"raylib-d": "4.5.0",
|
||||
"stdx-allocator": "2.77.5"
|
||||
"raylib-d": "5.0.1"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue