最終更新:2016-10-03 (月) 15:17:48 (2760d)  

Android Studio/プロジェクト/app/src/main/cpp/CMakeLists.txt
Top / Android Studio / プロジェクト / app / src / main / cpp / CMakeLists.txt

Android NDK/サンプル

  • CMakeの場合
    cmake_minimum_required(VERSION 3.4.1)
    
    add_library(hello-jni SHARED
                hello-jni.c)
    
    # Include libraries needed for hello-jni lib
    target_link_libraries(hello-jni log android)

CMakeLists.txtの指定

Include C++ Supportのとき