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}/..)