mirror of
https://github.com/cookiengineer/audacity
synced 2025-04-29 15:19:44 +02:00
28 lines
638 B
CMake
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 )
|