• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# helper file for Android samples build
2
3file(GLOB_RECURSE LIBS RELATIVE ${SRC_DIR} "*.so")
4
5foreach(l ${LIBS})
6  message(STATUS "  Copying: ${l} ...")
7  execute_process(COMMAND ${CMAKE_COMMAND} -E copy_if_different ${SRC_DIR}/${l} ${DST_DIR}/${l})
8endforeach()
9