1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-12-11 15:16:27 +01:00
Files
audacity/cmake-proxies/portsmf/CMakeLists.txt
Leland Lucius 6217351a12 Updates the cmake build system
It's still has some work, but it successfully builds on
all 3 main platforms.  Some of the outstanding items
include:

   Install target testing (mostly important for Linux)
   CMakeList clean up and comments
   Debug and Release build verification
   Audit of compile/link options
   Need a Mac signed and notarized build
   (and probably more)
2020-02-03 00:39:43 -06:00

29 lines
804 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_compile_definitions( ${TARGET} PRIVATE ${DEFINES} )
target_compile_features( ${TARGET} PRIVATE ${FEATURES} )
target_compile_options( ${TARGET} PRIVATE ${OPTIONS} )
target_include_directories( ${TARGET} PRIVATE ${INCLUDES} )
target_link_libraries( ${TARGET} PRIVATE ${LIBRARIES} )