mirror of
https://github.com/starr-dusT/citra.git
synced 2024-10-02 10:26:17 -07:00
11 lines
228 B
CMake
11 lines
228 B
CMake
cmake_minimum_required(VERSION 3.8)
|
|
|
|
add_library(citra-android SHARED
|
|
dummy.cpp
|
|
)
|
|
|
|
# find Android's log library
|
|
find_library(log-lib log)
|
|
|
|
target_link_libraries(citra-android ${log-lib} core common inih)
|