mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 13:57:57 -07:00
10 lines
180 B
CMake
10 lines
180 B
CMake
include_directories(include)
|
|
include_directories(libcharset/include)
|
|
|
|
set(SRCS lib/iconv.c
|
|
lib/relocatable.c
|
|
libcharset/lib/localcharset.c
|
|
)
|
|
|
|
add_library(iconv STATIC ${SRCS})
|