shithub: cstory

ref: 5c6b71e3a1b2f09155ea04263c268e3279e5c943
dir: /external/SDL2/android-project/app/jni/src/CMakeLists.txt/

View raw version
cmake_minimum_required(VERSION 3.6)

project(MY_APP)

find_library(SDL2 SDL2)

add_library(main SHARED)

target_sources(main PRIVATE YourSourceHere.c)

target_link_libraries(main SDL2)