mirror of
https://github.com/cookiengineer/audacity
synced 2025-05-01 16:19:43 +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.
26 lines
740 B
CMake
26 lines
740 B
CMake
#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} ) |