Just meant for integration testing. Built library is not meant to be installed or shipped. This has to happen as part of the Android build.
10 lines
329 B
CMake
10 lines
329 B
CMake
set(ANBOX_SUPPORT_SOURCES
|
|
jni/anbox_support.cpp)
|
|
|
|
include_directories(
|
|
${CMAKE_SOURCE_DIR}/external/jni)
|
|
|
|
# We're not going to ship this, just building here to add proper
|
|
# unit tests we can run in a integration system without having
|
|
# the Android build system around.
|
|
add_library(anbox-support ${ANBOX_SUPPORT_SOURCES})
|