1
0
mirror of https://github.com/nigelbarink/R3c0v3r.git synced 2026-02-14 02:10:50 +00:00

Fixed capitalisation for optimize and symbols buildoptions

This commit is contained in:
2020-09-08 20:42:35 +02:00
parent 25222b4645
commit beffbd85b6

24
premake5.lua Normal file
View File

@@ -0,0 +1,24 @@
#!lua
solution "Rec0ver_H4rv4rd"
configurations { "Debug", "Release" }
project "Rec0ver Program"
basedir "./"
language "C"
files {
"src/recover.c"
}
kind "ConsoleApp"
targetname "recover"
targetdir "build/debug"
configuration "Debug"
defines {"DEBUG"}
symbols "On"
configuration "Release"
defines {"NDEBUG"}
optimize "On"