immich/mobile/android/app/CMakeLists.txt

10 lines
208 B
Text
Raw Permalink Normal View History

2025-08-13 00:10:55 -04:00
cmake_minimum_required(VERSION 3.10.2)
project("native_buffer")
add_library(native_buffer SHARED
src/main/cpp/native_buffer.c)
find_library(log-lib log)
target_link_libraries(native_buffer ${log-lib})