mirror of
https://github.com/immich-app/immich
synced 2025-11-14 17:36:12 +00:00
10 lines
208 B
Text
10 lines
208 B
Text
|
|
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})
|