CMakeLists.txt 381 B

12345678910111213141516171819
  1. cmake_minimum_required (VERSION 3.6)
  2. project(CMSISNNSupport)
  3. include(configLib)
  4. file(GLOB SRC "./*_*.c")
  5. add_library(CMSISNNSupport STATIC ${SRC})
  6. configLib(CMSISNNSupport ${ROOT})
  7. configDsp(CMSISNNSupport ${ROOT})
  8. ### Includes
  9. target_include_directories(CMSISNNSupport PUBLIC "${NN}/Include")
  10. target_include_directories(CMSISNNSupport PUBLIC "${ROOT}/CMSIS/DSP/Include")