mirror of https://github.com/PCSX2/pcsx2.git
22 lines
302 B
CMake
22 lines
302 B
CMake
add_library(png
|
|
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
|
|
)
|
|
|
|
target_link_libraries(png PRIVATE ZLIB::ZLIB)
|
|
target_include_directories(png PUBLIC .)
|
|
add_library(PNG::PNG ALIAS png)
|