mirror of
https://github.com/cookiengineer/audacity
synced 2026-01-13 08:05:52 +01:00
Add remaining libs to CMake
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.
This commit is contained in:
27
cmake-proxies/sbsms/CMakeLists.txt
Normal file
27
cmake-proxies/sbsms/CMakeLists.txt
Normal file
@@ -0,0 +1,27 @@
|
||||
#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} )
|
||||
Reference in New Issue
Block a user