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 (436B)


      1 cmake_minimum_required(VERSION 3.10)
      2 
      3 project(wLib)
      4 
      5 add_library(wLib STATIC)
      6 
      7 set(SOURCES
      8 	wDevice.cpp wDevice.h
      9 	wDsp.cpp wDsp.h
     10 	wHardware.cpp wHardware.h
     11 	wMidiTypes.h
     12 	wPlugin.cpp wPlugin.h
     13 	wRom.cpp wRom.h
     14 	wState.cpp wState.h
     15 )
     16 
     17 target_sources(wLib PRIVATE ${SOURCES})
     18 source_group("source" FILES ${SOURCES})
     19 
     20 target_link_libraries(wLib PUBLIC hardwareLib)
     21 
     22 target_include_directories(wLib PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/..)