CMakeLists.txt 337 B

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