mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 13:57:57 -07:00
23 lines
312 B
CMake
23 lines
312 B
CMake
# OUR SOURCES
|
|
set(SRCS
|
|
png.h
|
|
pngconf.h
|
|
png.c
|
|
pngerror.c
|
|
pngget.c
|
|
pngmem.c
|
|
pngpread.c
|
|
pngread.c
|
|
pngrio.c
|
|
pngrtran.c
|
|
pngrutil.c
|
|
pngset.c
|
|
pngtrans.c
|
|
pngwio.c
|
|
pngwrite.c
|
|
pngwtran.c
|
|
pngwutil.c
|
|
)
|
|
add_definitions(-Wno-self-assign)
|
|
add_library(png STATIC ${SRCS})
|