android: Add CMakeLists.txt

This commit is contained in:
Calcitem 2020-11-06 00:07:50 +08:00
parent 40a3521607
commit 1b70185b15
1 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,29 @@
cmake_minimum_required(VERSION 3.4.1)
add_library( # Sets the name of the library.
engine
# Sets the library as a shared library.
SHARED
# Provides a relative path to your source file(s).
src/main/cpp/mill-engine.cpp
../../command/command-channel.cpp
../../command/command-queue.cpp
../../command/engine-main.cpp)
find_library( # Sets the name of the path variable.
log-lib
# Specifies the name of the NDK library that
# you want CMake to locate.
log)
target_link_libraries( # Specifies the target library.
engine
# Links the target library to the log library
# included in the NDK.
${log-lib})