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:
parent
8c3775ee6f
commit
7ebb0e526f
|
@ -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})
|
Loading…
Reference in New Issue