CMakeLists.txt 256 B

1234567891011121314151617
  1. cmake_minimum_required (VERSION 3.6)
  2. project(CMSISDSPSupport)
  3. file(GLOB SRC "./*_*.c")
  4. add_library(CMSISDSPSupport STATIC ${SRC})
  5. configdsp(CMSISDSPSupport ..)
  6. ### Includes
  7. target_include_directories(CMSISDSPSupport PUBLIC "${DSP}/../../Include")