CMakeLists.txt 272 B

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