diff options
Diffstat (limited to 'libk3b/plugin/libsamplerate/CMakeLists.txt')
-rw-r--r-- | libk3b/plugin/libsamplerate/CMakeLists.txt | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/libk3b/plugin/libsamplerate/CMakeLists.txt b/libk3b/plugin/libsamplerate/CMakeLists.txt new file mode 100644 index 0000000..b12681e --- /dev/null +++ b/libk3b/plugin/libsamplerate/CMakeLists.txt @@ -0,0 +1,29 @@ +################################################# +# +# (C) 2016 Golubev Alexander +# fatzer2 (AT) gmail.com +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +include_directories( + ${CMAKE_BINARY_DIR} + ${CMAKE_CURRENT_BINARY_DIR} + ${CMAKE_CURRENT_SOURCE_DIR} + ${TDE_INCLUDE_DIR} + ${TQT_INCLUDE_DIRS} +) + +link_directories( + ${TQT_LIBRARY_DIRS} +) + + +##### samplerate (static) ####################### + +tde_add_library( samplerate STATIC_PIC AUTOMOC + SOURCES samplerate.c src_sinc.c src_zoh.c src_linear.c +) |