mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-14 13:27:45 -07:00
14 lines
243 B
CMake
14 lines
243 B
CMake
add_library(iconv STATIC
|
|
lib/iconv.c
|
|
lib/relocatable.c
|
|
libcharset/lib/localcharset.c
|
|
)
|
|
target_include_directories(iconv
|
|
PUBLIC
|
|
include
|
|
PRIVATE
|
|
libcharset/include
|
|
)
|
|
dolphin_disable_warnings(iconv)
|
|
add_library(Iconv::Iconv ALIAS iconv)
|