mirror of
				https://github.com/cookiengineer/audacity
				synced 2025-11-04 16:14:00 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			606 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			606 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
set( TARGET mod-nyq-bench )
 | 
						|
set( SOURCES
 | 
						|
      NyqBench.cpp
 | 
						|
      NyqBench.h
 | 
						|
)
 | 
						|
set( DEFINES
 | 
						|
   PRIVATE
 | 
						|
      # This is needed until the transition to cmake is complete and
 | 
						|
      # the Windows pragmas are removed from NyqBench.cpp.  Without
 | 
						|
      # it, the wxWidgets "debug.h" will define __WXDEBUG__ which
 | 
						|
      # then causes this module to emit library pragmas for the debug
 | 
						|
      # versions of wxWidgets...even if the build is for Release.
 | 
						|
      wxDEBUG_LEVEL=0
 | 
						|
)
 | 
						|
audacity_module( ${TARGET} "${SOURCES}" "Audacity"
 | 
						|
   "${DEFINES}" "" )
 | 
						|
 | 
						|
set_target_properties( ${TARGET} PROPERTIES EXCLUDE_FROM_ALL YES )
 |