Initial commit.

This commit is contained in:
2025-05-03 00:05:11 +02:00
commit dc0f8c7507
9 changed files with 617 additions and 0 deletions

27
premake5.lua Normal file
View File

@@ -0,0 +1,27 @@
PLATFORM = os.target()
ARCH = "x86_64"
workspace "pwdin"
configurations { "Debug", "Release" }
project "pwdin"
kind "StaticLib"
language "C"
targetdir "bin/%{cfg.buildcfg}"
location "build/"
buildoptions({ "-Wall", "-Wextra" })
files {"pwdin.h", "pwdin.c"}
filter "configurations:Debug"
defines {"DEBUG"}
symbols "On"
filter "configurations:Release"
defines {"NDEBUG"}
optimize "On"
filter {}