mirror of
https://github.com/cookiengineer/audacity
synced 2025-05-02 16:49:41 +02:00
20 lines
507 B
CMake
20 lines
507 B
CMake
# Include the modules that we'll build
|
|
|
|
if( NOT CMAKE_SYSTEM_NAME MATCHES "Windows" )
|
|
add_subdirectory( mod-null )
|
|
add_subdirectory( mod-nyq-bench )
|
|
endif()
|
|
|
|
add_subdirectory( mod-script-pipe )
|
|
|
|
|
|
if( NOT CMAKE_SYSTEM_NAME MATCHES "Darwin" )
|
|
if( NOT "${CMAKE_GENERATOR}" MATCHES "Visual Studio*")
|
|
install( DIRECTORY "${_DEST}/modules"
|
|
DESTINATION "${_PKGLIB}" )
|
|
endif()
|
|
endif()
|
|
|
|
#propagate collected edges up to root CMakeLists.txt
|
|
set( GRAPH_EDGES "${GRAPH_EDGES}" PARENT_SCOPE )
|