add argparse for long recording/not skipping silence

small clean up
This commit is contained in:
2023-01-19 20:21:24 +01:00
parent d4a0d51bfc
commit 9423d2487d
17 changed files with 1753 additions and 284 deletions

View File

@ -1,13 +0,0 @@
#!/bin/bash
if [ "$(uname)" == "Darwin" ]; then
# Do something under Mac OS X platform
./premake5_osx gmake --file=premake5.lua
elif [ "$(expr substr $(uname -s) 1 5)" == "Linux" ]; then
# Do something under Linux platform
./premake5_linux gmake --file=premake5.lua
elif [ "$(expr substr $(uname -s) 1 10)" == "MINGW32_NT" ]; then
# Do something under Windows NT platform
echo "windows? don't use this"
fi

Binary file not shown.

View File

@ -1,25 +1,26 @@
solution "demboyz"
basedir ".."
location (_ACTION)
targetdir "../bin"
startproject "demboyz"
configurations { "Release", "Debug" }
flags { "MultiProcessorCompile", "Symbols" }
flags { "MultiProcessorCompile" }
symbols "On"
configuration "Debug"
filter "configurations:Debug"
defines { "DEBUG" }
configuration "Release"
filter "configurations:Release"
optimize "Full"
configuration {}
filter {}
project "demboyz"
kind "ConsoleApp"
language "C++"
configuration "gmake"
filter "configurations:gmake"
buildoptions { "-std=c++17 -Wall" }
linkoptions { "-flto -no-pie -Wall" }
configuration {}
filter {}
files
{
"../demboyz/**.h",

Binary file not shown.

Binary file not shown.

View File

@ -7,9 +7,10 @@ group "external"
kind "StaticLib"
language "C++"
location (_ACTION .. "/" .. project().name)
configuration "gmake"
filter "configurations:gmake"
buildoptions { "-std=c++11" }
configuration {}
filter {}
includedirs
{
base_dir .. "include/",