1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-04-29 15:19:44 +02:00
audacity/modules/CMakeLists.txt
Edgar 641b293dde 🐛 Fixed missing files when packaging with ninja on windows
Signed-off-by: Edgar <Edgar@AnotherFoxGuy.com>
2021-07-20 06:08:23 -05:00

28 lines
638 B
CMake

# Include the modules that we'll build
# The list of modules is ordered so that each module occurs after any others
# that it depends on
set( MODULES
mod-script-pipe
)
if( NOT CMAKE_SYSTEM_NAME MATCHES "Windows" )
list( APPEND MODULES
mod-null
mod-nyq-bench
)
endif()
foreach( MODULE ${MODULES} )
add_subdirectory("${MODULE}")
endforeach()
if( NOT CMAKE_SYSTEM_NAME MATCHES "Darwin" )
if( NOT WIN32)
install( DIRECTORY "${_DEST}/modules"
DESTINATION "${_PKGLIB}" )
endif()
endif()
#propagate collected edges up to root CMakeLists.txt
set( GRAPH_EDGES "${GRAPH_EDGES}" PARENT_SCOPE )