mirror of
https://github.com/cookiengineer/audacity
synced 2025-05-10 06:01:09 +02:00
These now all appear in the MSVC project. Currently only FileDialog, Nyquist, mod-script-pipe compile and link, and Audacity compiles. Still to set include directories and flags for most of the libs.
27 lines
791 B
CMake
27 lines
791 B
CMake
#directory cmake-proxies/sbsms
|
|
set( TARGET sbsms )
|
|
set( TARGET_SOURCE ${LIB_SRC_DIRECTORY}${TARGET} )
|
|
project( ${TARGET} )
|
|
|
|
set( SOURCES
|
|
${LIB_SRC_DIRECTORY}sbsms/src/buffer.cpp
|
|
${LIB_SRC_DIRECTORY}sbsms/src/dBTable.cpp
|
|
${LIB_SRC_DIRECTORY}sbsms/src/fft.cpp
|
|
${LIB_SRC_DIRECTORY}sbsms/src/grain.cpp
|
|
${LIB_SRC_DIRECTORY}sbsms/src/resample.cpp
|
|
${LIB_SRC_DIRECTORY}sbsms/src/sbsms.cpp
|
|
${LIB_SRC_DIRECTORY}sbsms/src/slide.cpp
|
|
${LIB_SRC_DIRECTORY}sbsms/src/sms.cpp
|
|
${LIB_SRC_DIRECTORY}sbsms/src/subband.cpp
|
|
${LIB_SRC_DIRECTORY}sbsms/src/track.cpp
|
|
${LIB_SRC_DIRECTORY}sbsms/src/trackpoint.cpp
|
|
)
|
|
# This defines the #define on both Windows and Linux.
|
|
add_definitions( )
|
|
add_library( ${TARGET} MODULE ${SOURCES})
|
|
|
|
target_include_directories( ${TARGET} PRIVATE
|
|
|
|
)
|
|
|
|
target_link_libraries( ${TARGET} ) |