mirror of
https://github.com/cookiengineer/audacity
synced 2025-04-30 23:59:41 +02:00
Uses system libraries by default with a fallback to local Adds the Wrapper build on OSX Adds mod_script_pipe Adds ffmpeg Some additional cleanup
25 lines
577 B
CMake
25 lines
577 B
CMake
|
|
add_library( ${TARGET} STATIC )
|
|
|
|
list( APPEND SOURCES
|
|
PRIVATE
|
|
${TARGET_ROOT}/allegro.cpp
|
|
${TARGET_ROOT}/allegrord.cpp
|
|
${TARGET_ROOT}/allegroserial.cpp
|
|
${TARGET_ROOT}/allegrosmfrd.cpp
|
|
${TARGET_ROOT}/allegrosmfwr.cpp
|
|
${TARGET_ROOT}/allegrowr.cpp
|
|
${TARGET_ROOT}/mfmidi.cpp
|
|
${TARGET_ROOT}/strparse.cpp
|
|
)
|
|
|
|
list( APPEND INCLUDES
|
|
PUBLIC
|
|
${TARGET_ROOT}/include
|
|
)
|
|
|
|
organize_source( "${TARGET_ROOT}" "" "${SOURCES}" )
|
|
target_sources( ${TARGET} PRIVATE ${SOURCES} )
|
|
target_include_directories( ${TARGET} PRIVATE ${INCLUDES} )
|
|
|