mirror of
https://github.com/cookiengineer/audacity
synced 2025-04-30 07:39:42 +02:00
18 lines
406 B
CMake
18 lines
406 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 "${_PKGDATA}" )
|
|
endif()
|
|
endif()
|
|
|