mirror of
https://github.com/immich-app/immich.git
synced 2026-07-04 03:45:59 -07:00
14 lines
284 B
CMake
14 lines
284 B
CMake
cmake_minimum_required(VERSION 3.12)
|
|
|
|
set(CMAKE_C_STANDARD 17)
|
|
set(CMAKE_C_STANDARD_REQUIRED ON)
|
|
|
|
project(native_buffer LANGUAGES C)
|
|
|
|
add_library(native_buffer SHARED
|
|
src/main/cpp/native_buffer.c
|
|
src/main/cpp/native_image.c
|
|
)
|
|
|
|
target_link_libraries(native_buffer jnigraphics)
|