this is necessary in order to get Furnace to build using CMake 4.0. you should do: git submodule deinit extern/portaudio
		
			
				
	
	
		
			19 lines
		
	
	
		
			336 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			336 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
@PACKAGE_INIT@
 | 
						|
 | 
						|
include("${CMAKE_CURRENT_LIST_DIR}/PortAudioTargets.cmake")
 | 
						|
 | 
						|
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}/modules")
 | 
						|
 | 
						|
include(CMakeFindDependencyMacro)
 | 
						|
 | 
						|
find_dependency(Threads)
 | 
						|
 | 
						|
if("@PA_USE_JACK@")
 | 
						|
  find_dependency(Regex)
 | 
						|
  find_dependency(JACK)
 | 
						|
endif()
 | 
						|
 | 
						|
if("@PA_USE_ALSA@")
 | 
						|
  find_dependency(ALSA)
 | 
						|
endif()
 |