mirror of
https://github.com/chiteroman/PlayIntegrityFix.git
synced 2025-02-01 08:52:56 +08:00
15 lines
324 B
CMake
15 lines
324 B
CMake
cmake_minimum_required(VERSION 3.22.1)
|
|
|
|
project("playintegrityfix")
|
|
|
|
find_package(cxx REQUIRED CONFIG)
|
|
|
|
link_libraries(cxx::cxx)
|
|
|
|
add_library(${CMAKE_PROJECT_NAME} SHARED main.cpp)
|
|
|
|
add_subdirectory(Dobby)
|
|
|
|
SET_OPTION(Plugin.Android.BionicLinkerUtil ON)
|
|
|
|
target_link_libraries(${CMAKE_PROJECT_NAME} PRIVATE log dobby_static) |