This commit is contained in:
2025-11-03 21:07:16 +01:00
commit 1a5a994474
7 changed files with 517 additions and 0 deletions

7
CMakeLists.txt Normal file
View File

@@ -0,0 +1,7 @@
cmake_minimum_required(VERSION 4.1)
project(audiohide C)
set(CMAKE_C_STANDARD 23)
add_executable(audiohide main.c)
target_link_libraries(audiohide sndfile fftw3f m)