Compare commits
No commits in common. "465949325584c87066a7c80c098c412acbe57aa2" and "3f5e08d2fd91b0f4c9a0efc5c9a427b57659f46a" have entirely different histories.
4659493255
...
3f5e08d2fd
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -1,3 +0,0 @@
|
||||||
bin
|
|
||||||
build
|
|
||||||
Makefile
|
|
25
premake5.lua
25
premake5.lua
|
@ -1,25 +0,0 @@
|
||||||
workspace "roguelike"
|
|
||||||
configurations { "debug", "release" }
|
|
||||||
location "."
|
|
||||||
|
|
||||||
project "roguelike"
|
|
||||||
kind "WindowedApp"
|
|
||||||
language "C++"
|
|
||||||
cppdialect "C++20"
|
|
||||||
location "build/"
|
|
||||||
buildinputs "../resources/**.*"
|
|
||||||
buildoutputs "%{cfg.targetdir}/resources/**.*"
|
|
||||||
postbuildcommands "{COPYDIR} ../resources %{cfg.targetdir}"
|
|
||||||
files { "src/**.cpp", "vendor/**.cpp" }
|
|
||||||
includedirs { "src/", "vendor/" }
|
|
||||||
links { "SDL2", "SDL2_image", "m", "SDL2_ttf" }
|
|
||||||
targetdir "bin/"
|
|
||||||
exceptionhandling "Off"
|
|
||||||
filter "configurations:debug"
|
|
||||||
defines { "DEBUG" }
|
|
||||||
optimize "Off"
|
|
||||||
symbols "On"
|
|
||||||
filter "configurations:release"
|
|
||||||
defines { "NDEBUG" }
|
|
||||||
optimize "On"
|
|
||||||
symbols "Off"
|
|
|
@ -1,3 +0,0 @@
|
||||||
int main(int argc, char *argv[]) {
|
|
||||||
return 0;
|
|
||||||
}
|
|
Loading…
Reference in a new issue