Android stubs

This commit is contained in:
elasota
2020-10-09 21:46:30 -04:00
parent 3a736296ce
commit a2f19f5ccb
3 changed files with 66 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
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)