1
0
mirror of synced 2024-11-12 02:00:52 +01:00

build: Fixed building of miniaudio on macOS

This commit is contained in:
WerWolv 2023-01-24 23:57:43 +01:00
parent 8ea0e9ce9c
commit fc44dd4592

View File

@ -6,3 +6,7 @@ add_library(miniaudio STATIC
)
target_include_directories(miniaudio PUBLIC include)
if (APPLE)
set_source_files_properties(source/miniaudio.c PROPERTIES LANGUAGE OBJC)
endif ()