Compare commits

...

1 Commits

Author SHA1 Message Date
Bartosz Podrygajlo
fe7bad3c35 Use cmake to enable a C/C++ compiler warning in a subdirectory 2026-03-03 18:16:53 +01:00

View File

@@ -1,3 +1,6 @@
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wunused-parameter")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wunused-parameter")
# Noise device static lib
add_library(noise_device STATIC noise_device.c)
target_link_libraries(noise_device PRIVATE log_headers)