mirror of
https://github.com/aseprite/aseprite.git
synced 2024-12-26 18:21:44 +00:00
36ca165328
Fix loadpng library and png_format.cpp to support the new libpng version.
25 lines
335 B
CMake
25 lines
335 B
CMake
add_library(libpng
|
|
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)
|
|
|
|
# SOME NEEDED DEFINITIONS
|
|
|
|
add_definitions(-DPNG_CONFIGURE_LIBPNG)
|
|
|
|
if(MSVC)
|
|
add_definitions(-D_CRT_SECURE_NO_DEPRECATE)
|
|
endif(MSVC)
|