1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-04-30 23:59:41 +02:00
audacity/cmake-proxies/portsmf/CMakeLists.txt
Leland Lucius 2e113ba0a5 More cmake updates
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
2020-02-05 11:10:22 -06:00

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} )