mirror of
https://github.com/DrBeef/JKXR.git
synced 2024-11-15 00:41:37 +00:00
4597b03873
Opens in Android Studio but haven't even tried to build it yet (it won't.. I know that much!)
23 lines
502 B
CMake
23 lines
502 B
CMake
SET(PNG_DIR ${SRC_ROOT}/libpng)
|
|
include_directories(${PNG_DIR})
|
|
SET(PNG_SRC_FILES
|
|
${PNG_DIR}/png.c
|
|
${PNG_DIR}/pngerror.c
|
|
${PNG_DIR}/pngget.c
|
|
${PNG_DIR}/pngmem.c
|
|
${PNG_DIR}/pngpread.c
|
|
${PNG_DIR}/pngread.c
|
|
${PNG_DIR}/pngrio.c
|
|
${PNG_DIR}/pngrtran.c
|
|
${PNG_DIR}/pngrutil.c
|
|
${PNG_DIR}/pngset.c
|
|
${PNG_DIR}/pngtrans.c
|
|
${PNG_DIR}/pngwio.c
|
|
${PNG_DIR}/pngwrite.c
|
|
${PNG_DIR}/pngwtran.c
|
|
${PNG_DIR}/pngwutil.c
|
|
${PNG_DIR}/arm/arm_init.c
|
|
${PNG_DIR}/arm/filter_neon_intrinsics.c
|
|
)
|
|
|
|
|