Sign in
skia
/
third_party
/
sdl
/
refs/heads/master
/
.
/
android-project
/
app
/
jni
/
src
/
CMakeLists.txt
blob: fb021f9f8f6768136efc3752533b691a88e5c992 [
file
] [
log
] [
blame
] [
edit
]
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)