1
0
Fork
You've already forked freeimage-android
0
No description
  • C 54.4%
  • C++ 42.3%
  • Makefile 3%
  • CMake 0.2%
Find a file
2025年06月23日 12:09:04 +03:00
Source setup for android build 2025年06月22日 03:54:43 +03:00
.gitignore cache files removed 2025年06月23日 12:09:04 +03:00
build.sh setup for android build 2025年06月22日 03:54:43 +03:00
cmake_install.cmake armv7 lib 2025年06月23日 12:07:40 +03:00
CMakeLists.txt setup for android build 2025年06月22日 03:54:43 +03:00
libFreeImage.a armv7 lib 2025年06月23日 12:07:40 +03:00
libFreeImage.so armv7 lib 2025年06月23日 12:07:40 +03:00
Makefile armv7 lib 2025年06月23日 12:07:40 +03:00
README.md Update README.md 2019年10月26日 16:08:55 -03:00

FreeImage Logo

FreeImage

FreeImage with the CMake build system

Branches

  • master FreeImage 3.17 with all formats
  • only-png FreeImage 3.17 only with PNG enabled
  • 3.18 FreeImage 3.18 only with BMP, JPEG and PNG enabled

Usage

Clone this repo (in the right branch) and use add_subdirectory in your root CMakeLists.txt file.

add_subdirectory(FreeImage)# if you want RGB color order instead of BGR
# target_compile_definitions(FreeImage PUBLIC FREEIMAGE_COLORORDER=1)
# ...
target_include_directories(YourTarget PUBLIC ${FreeImage_SOURCE_DIR}/Source)target_link_libraries(YourTarget FreeImage)