mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 10:22:45 +00:00 
			
		
		
		
	 a099a77e82
			
		
	
	
		a099a77e82
		
	
	
	
	
		
			
			LibDSP can greatly benefit from this nice FFT implementation, so let's move it into the fitting library :^) Note that this now requires linking SoundPlayer against LibDSP. That's not an issue (LibDSP is rather small currently anyways), as we can probably make great use of it in the future anyways.
		
			
				
	
	
		
			10 lines
		
	
	
	
		
			154 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
	
		
			154 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
| set(SOURCES
 | |
|     Clip.cpp
 | |
|     Track.cpp
 | |
|     Effects.cpp
 | |
|     Synthesizers.cpp
 | |
|     FFT.cpp
 | |
| )
 | |
| 
 | |
| serenity_lib(LibDSP dsp)
 | |
| target_link_libraries(LibDSP LibCore)
 |