This commit is contained in:
Ki Rill 2024-07-08 13:29:39 +05:00
parent 920fe2595a
commit cffdf93e66
2 changed files with 10 additions and 49 deletions

1
.gitignore vendored
View File

@ -9,4 +9,5 @@ lib/
*.dll
*.out
*.exe
*.pdb
d-raylib-project-template

View File

@ -2,58 +2,18 @@
"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"],
"preBuildCommands": [
"dub run raylib-d:install"
],
"description": "D/Raylib minimal setup",
"license": "no license",
"name": "d-raylib-project-template",
"targetPath": "bin"
"name": "d-raylib-project-template"
}