Initial commit, Basic project structure

This commit is contained in:
2021-05-22 20:50:20 +01:00
commit b089c76938
10 changed files with 513 additions and 0 deletions

18
premake5.lua Normal file
View File

@ -0,0 +1,18 @@
workspace "BarinkEngine"
configurations { "Debug", "Release" }
project "Engine"
kind "ConsoleApp"
language "C"
targetdir "build/%{cfg.buildcfg}"
files { "src/*.c"}
filter "configurations:Debug"
defines {"DEBUG"}
symbols "On"
filter "configurations:Release"
defines {"NDEBUG"}
optimize "On"