mirror of https://github.com/stenzek/duckstation
				
				
				
			
			You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			16 lines
		
	
	
		
			592 B
		
	
	
	
		
			CMake
		
	
			
		
		
	
	
			16 lines
		
	
	
		
			592 B
		
	
	
	
		
			CMake
		
	
# Renderer options.
 | 
						|
option(ENABLE_OPENGL "Build with OpenGL renderer" ON)
 | 
						|
option(ENABLE_VULKAN "Build with Vulkan renderer" ON)
 | 
						|
option(BUILD_NOGUI_FRONTEND "Build the NoGUI frontend" OFF)
 | 
						|
option(BUILD_QT_FRONTEND "Build the Qt frontend" ON)
 | 
						|
option(BUILD_REGTEST "Build regression test runner" OFF)
 | 
						|
option(BUILD_TESTS "Build unit tests" OFF)
 | 
						|
 | 
						|
if(LINUX OR BSD)
 | 
						|
  option(ENABLE_X11 "Support X11 window system" ON)
 | 
						|
  option(ENABLE_WAYLAND "Support Wayland window system" ON)
 | 
						|
endif()
 | 
						|
if(APPLE)
 | 
						|
  option(SKIP_POSTPROCESS_BUNDLE "Disable bundle post-processing, including Qt additions" OFF)
 | 
						|
endif()
 |