gearmulator

Emulation of classic VA synths of the late 90s/2000s that are based on Motorola 56300 family DSPs
Log | Files | Refs | Submodules | README | LICENSE

CMakeLists.txt (299B)


      1 cmake_minimum_required(VERSION 3.10)
      2 project(resample)
      3 
      4 set(SOURCES
      5 	src/filterkit.c
      6 	src/resample.c
      7 	src/resamplesubs.c)
      8 
      9 add_library(resample STATIC ${SOURCES})
     10 set_property(TARGET resample PROPERTY FOLDER "Gearmulator")
     11 
     12 target_include_directories(resample PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/..)