mirror of
				https://github.com/raysan5/raylib.git
				synced 2025-10-26 12:27:01 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			416 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			416 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
| SET(CMAKE_SYSTEM_NAME Linux)
 | |
| 
 | |
| SET(CMAKE_C_COMPILER   emcc)
 | |
| SET(CMAKE_CXX_COMPILER em++)
 | |
| if(NOT DEFINED CMAKE_AR)
 | |
|   find_program(CMAKE_AR NAMES emar)
 | |
| endif()
 | |
| if(NOT DEFINED CMAKE_RANLIB)
 | |
|   find_program(CMAKE_RANLIB NAMES emranlib)
 | |
| endif()
 | |
| 
 | |
| set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER)
 | |
| set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY)
 | |
| set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE BOTH)
 | |
| set(CMAKE_FIND_ROOT_PATH_MODE_PACKAGE ONLY)
 | 
