mirror of
				https://github.com/cookiengineer/audacity
				synced 2025-11-04 08:04:06 +01: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()
 | 
						|
 |