mirror of
				https://github.com/nicbarker/clay.git
				synced 2025-11-04 00:26:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			340 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			340 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
cmake_minimum_required(VERSION 3.27)
 | 
						|
project(clay)
 | 
						|
 | 
						|
add_subdirectory("examples/cpp-project-example")
 | 
						|
 | 
						|
# Don't try to compile C99 projects using MSVC
 | 
						|
if(NOT MSVC)
 | 
						|
  add_subdirectory("examples/raylib-sidebar-scrolling-container")
 | 
						|
  add_subdirectory("examples/cairo-pdf-rendering")
 | 
						|
  add_subdirectory("examples/clay-official-website")
 | 
						|
endif()
 |