mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-30 21:30:04 +00:00 
			
		
		
		
	The Linux build fails to compile because gamemode will try to link against `common` when it's not needed.
		
			
				
	
	
		
			9 lines
		
	
	
	
		
			305 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
	
		
			305 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
| # SPDX-FileCopyrightText: Copyright 2023 yuzu Emulator Project
 | |
| # SPDX-License-Identifier: GPL-3.0-or-later
 | |
| 
 | |
| project(gamemode LANGUAGES CXX C)
 | |
| 
 | |
| add_library(gamemode include/gamemode_client.h)
 | |
| 
 | |
| target_include_directories(gamemode PUBLIC include)
 | |
| set_target_properties(gamemode PROPERTIES LINKER_LANGUAGE C)
 |