0
1
mirror of https://github.com/radio95-rnt/fm95.git synced 2026-02-26 19:23:51 +01:00
This commit is contained in:
2025-04-27 13:11:42 +02:00
parent ca82168784
commit c4d5c39ed5
17 changed files with 82 additions and 149 deletions

View File

@@ -7,15 +7,19 @@ set(CMAKE_C_STANDARD_REQUIRED YES)
file(GLOB SRC_FILES "src/*.c")
file(GLOB LIB_FILES "lib/*.c")
file(GLOB DSP_FILES "dsp/*.c")
# file(GLOB LIB_FILES "lib/*.c")
file(GLOB IO_FILES "io/*.c")
add_library(libfm OBJECT ${LIB_FILES})
# add_library(libfm OBJECT ${LIB_FILES})
add_library(libfmdsp OBJECT ${DSP_FILES})
add_library(libfmio OBJECT ${IO_FILES})
set(FM_LIBS libfm libfmio pulse pulse-simple m)
set(FM_LIBS libfmio libfmdsp pulse pulse-simple m)
foreach(SRC_FILE ${SRC_FILES})
get_filename_component(EXEC_NAME ${SRC_FILE} NAME_WE)