mirror of
https://github.com/cookiengineer/audacity
synced 2025-10-11 00:53:46 +02: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:
26
cmake-proxies/portburn/CMakeLists.txt
Normal file
26
cmake-proxies/portburn/CMakeLists.txt
Normal file
@@ -0,0 +1,26 @@
|
||||
#directory cmake-proxies/portburn
|
||||
set( TARGET portburn )
|
||||
set( TARGET_SOURCE ${LIB_SRC_DIRECTORY}${TARGET} )
|
||||
project( ${TARGET} )
|
||||
|
||||
set( SOURCES
|
||||
${LIB_SRC_DIRECTORY}portburn/portburn_macosx.cpp
|
||||
${LIB_SRC_DIRECTORY}portburn/portburn_staging.cpp
|
||||
${LIB_SRC_DIRECTORY}portburn/portburn_winxp.cpp
|
||||
${LIB_SRC_DIRECTORY}portburn/portburn_winxpv1.cpp
|
||||
${LIB_SRC_DIRECTORY}portburn/portburn_winxpv2.cpp
|
||||
${LIB_SRC_DIRECTORY}portburn/test_portburn.cpp
|
||||
|
||||
#${LIB_SRC_DIRECTORY}portburn/portburn_macosx.c
|
||||
${LIB_SRC_DIRECTORY}portburn/portburn_staging.c
|
||||
|
||||
)
|
||||
# This defines the #define on both Windows and Linux.
|
||||
add_definitions( )
|
||||
add_library( ${TARGET} STATIC ${SOURCES})
|
||||
|
||||
target_include_directories( ${TARGET} PRIVATE
|
||||
|
||||
)
|
||||
|
||||
target_link_libraries( ${TARGET} )
|
Reference in New Issue
Block a user