mirror of
https://github.com/obsproject/obs-studio.git
synced 2026-05-05 22:04:46 -04:00
coreaudio-encoder: Fix cmake for mingw
This prevents windres to catch up '-Wno-multichar' as an option which is
unknown to it. This flag was added in commit
aa0e64b7c9
This commit is contained in:
@@ -4,17 +4,18 @@ set(coreaudio-encoder_SOURCES
|
||||
encoder.cpp)
|
||||
|
||||
if (WIN32)
|
||||
# Set compiler flag before adding resource file
|
||||
if (MINGW)
|
||||
set_source_files_properties(${coreaudio-encoder_SOURCES}
|
||||
PROPERTIES COMPILE_FLAGS "-Wno-multichar")
|
||||
endif()
|
||||
|
||||
set(MODULE_DESCRIPTION "OBS Core Audio encoder")
|
||||
configure_file(${CMAKE_SOURCE_DIR}/cmake/winrc/obs-module.rc.in coreaudio-encoder.rc)
|
||||
list(APPEND coreaudio-encoder_SOURCES
|
||||
coreaudio-encoder.rc)
|
||||
set(coreaudio-encoder_HEADERS windows-imports.h)
|
||||
set(coreaudio-encoder_LIBS )
|
||||
|
||||
if (MINGW)
|
||||
set_source_files_properties(${coreaudio-encoder_SOURCES}
|
||||
PROPERTIES COMPILE_FLAGS "-Wno-multichar")
|
||||
endif()
|
||||
else()
|
||||
find_library(COREFOUNDATION CoreFoundation)
|
||||
find_library(COREAUDIO CoreAudio)
|
||||
|
||||
Reference in New Issue
Block a user