Advertisement
HMuko

Untitled

Mar 1st, 2019
1,138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CMake 0.48 KB | None | 0 0
  1. cmake_minimum_required(VERSION 3.4.1)
  2.  
  3. # Build our own native library
  4. add_library (native-lib SHARED src/main/cpp/native-lib.cpp )
  5.  
  6. # Specify the libraries which our native library is dependent on, including Oboe
  7. target_link_libraries (native-lib log oboe)
  8.  
  9. # Build the Oboe library
  10. set (OBOE_DIR D:/Trabajo/libs/Android/oboe-1.1.1/oboe-1.1.1)
  11. add_subdirectory (${OBOE_DIR} ./oboe)
  12.  
  13. # Make the Oboe public headers available to our app
  14. include_directories (${OBOE_DIR}/include)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement