You've already forked KernelSU
mirror of
https://github.com/tiann/KernelSU.git
synced 2025-08-27 23:46:34 +00:00
21 lines
490 B
CMake
21 lines
490 B
CMake
|
|
# For more information about using CMake with Android Studio, read the
|
|
# documentation: https://d.android.com/studio/projects/add-native-code.html
|
|
|
|
# Sets the minimum version of CMake required to build the native library.
|
|
cmake_minimum_required(VERSION 3.18.1)
|
|
|
|
project("kernelsu")
|
|
|
|
find_package(cxx REQUIRED CONFIG)
|
|
link_libraries(cxx::cxx)
|
|
|
|
add_library(kernelsu
|
|
SHARED
|
|
jni.cc
|
|
ksu.cc
|
|
)
|
|
|
|
find_library(log-lib log)
|
|
|
|
target_link_libraries(kernelsu ${log-lib}) |