mirror of
https://github.com/recloudstream/cloudstream.git
synced 2024-08-15 01:53:11 +00:00
a3009af4f5
* Add NativeCrashHandler * Safer init
6 lines
246 B
CMake
6 lines
246 B
CMake
# Set this to the minimum version your project supports.
|
|
cmake_minimum_required(VERSION 3.18)
|
|
project(CrashHandler)
|
|
find_library(log-lib log)
|
|
add_library(native-lib SHARED src/main/cpp/native-lib.cpp)
|
|
target_link_libraries(native-lib ${log-lib})
|