anbox/android/CMakeLists.txt
Simon Fels b5b06d9beb Integrate android support library into our cmake build
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.
2016-06-23 18:36:10 +02:00

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})