dice-gui/premake5.lua
2025-09-15 19:35:36 +02:00

22 lines
445 B
Lua

workspace "DiceGui"
configurations { "debug", "release" }
location "."
project "Dice"
kind "ConsoleApp"
language "C"
cdialect "c23"
location "build/"
files { "src/**.c" }
links { "m", "stdc++" }
buildoptions { "-Wall" }
targetdir "bin/"
filter "configurations:debug"
defines { "DEBUG" }
symbols "On"
optimize "Off"
filter "configurations:release"
defines { "NDEBUG" }
optimize "On"
symbols "Off"