mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2026-04-12 04:11:28 -06:00
11 lines
241 B
CMake
11 lines
241 B
CMake
cmake_minimum_required(VERSION 3.8)
|
|
|
|
add_library(citra-android STATIC
|
|
src/main/cpp/dummy.cpp
|
|
)
|
|
|
|
# find Android's log library
|
|
find_library(log-lib log)
|
|
|
|
target_link_libraries(citra-android ${log-lib} core common inih)
|