Added CMakeLists.txt for libpng.

The vast majority of the changes in this commit were originally done
by Shawn Hoffman in commit c86846cf9c995d8e0463419bd9477b0dae884929.
This commit is contained in:
Maarten ter Huurne 2011-12-05 05:10:21 +01:00
parent 8c3775ee6f
commit 7ebb0e526f

19
Externals/libpng/CMakeLists.txt vendored Normal file
View File

@ -0,0 +1,19 @@
set(SRCS
"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_library(png STATIC ${SRCS})