mirror of
				https://git.suyu.dev/suyu/suyu
				synced 2025-11-04 00:49:02 -06:00 
			
		
		
		
	AudioCore: Skeleton Implementation
This commit: * Adds a new subproject, audio_core. * Defines structures that exist in DSP shared memory. * Hooks up various other parts of the emulator into audio core. This sets the foundation for a later HLE DSP implementation.
This commit is contained in:
		@@ -17,7 +17,7 @@ include_directories(${GLFW_INCLUDE_DIRS})
 | 
			
		||||
link_directories(${GLFW_LIBRARY_DIRS})
 | 
			
		||||
 | 
			
		||||
add_executable(citra ${SRCS} ${HEADERS})
 | 
			
		||||
target_link_libraries(citra core video_core common)
 | 
			
		||||
target_link_libraries(citra core video_core audio_core common)
 | 
			
		||||
target_link_libraries(citra ${GLFW_LIBRARIES} ${OPENGL_gl_LIBRARY} inih glad)
 | 
			
		||||
if (MSVC)
 | 
			
		||||
    target_link_libraries(citra getopt)
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user