]> git.cworth.org Git - apitrace/blob - libpng/CMakeLists.txt
Per thirdparty library CMakeLists.xt
[apitrace] / libpng / CMakeLists.txt
1 include_directories(${CMAKE_CURRENT_SOURCE_DIR})
2
3 if (NOT WIN32)
4     add_definitions (-fPIC)
5 endif (NOT WIN32)
6
7 add_library (png STATIC
8     png.c
9     pngerror.c
10     pngget.c
11     pngmem.c
12     pngpread.c
13     pngread.c
14     pngrio.c
15     pngrtran.c
16     pngrutil.c
17     pngset.c
18     pngtrans.c
19     pngwio.c
20     pngwrite.c
21     pngwtran.c
22     pngwutil.c
23 )