This commit is contained in:
Ki Rill 2024-07-08 13:26:39 +05:00
parent 84dfaf40ac
commit 920fe2595a
4 changed files with 11 additions and 5 deletions

10
.gitignore vendored
View File

@ -3,6 +3,10 @@
bin/ bin/
__internal/ __internal/
lib/ lib/
# *.lib *.dylib
# *.a *.lib
# *.dll *.a
*.dll
*.out
*.exe
d-raylib-project-template

View File

@ -10,8 +10,10 @@
"lflags-posix" : ["-L."], "lflags-posix" : ["-L."],
"lflags-osx" : ["-rpath", "@executable_path/"], "lflags-osx" : ["-rpath", "@executable_path/"],
"lflags-linux" : ["-rpath=$$ORIGIN"], "lflags-linux" : ["-rpath=$$ORIGIN"],
"preBuildCommands": [
"dub run raylib-d:install"
],
"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"
"targetPath": "bin"
} }