mirror of
				https://github.com/nicbarker/clay.git
				synced 2025-11-04 08:36:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			40 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			CMake
		
	
	
	
	
	
cmake_minimum_required(VERSION 3.27)
 | 
						|
project(clay_examples_introducing_clay_video_demo C)
 | 
						|
set(CMAKE_C_STANDARD 99)
 | 
						|
 | 
						|
# Adding Raylib
 | 
						|
include(FetchContent)
 | 
						|
set(FETCHCONTENT_QUIET FALSE)
 | 
						|
set(BUILD_EXAMPLES OFF CACHE BOOL "" FORCE) # don't build the supplied examples
 | 
						|
set(BUILD_GAMES    OFF CACHE BOOL "" FORCE) # don't build the supplied example games
 | 
						|
 | 
						|
FetchContent_Declare(
 | 
						|
    raylib
 | 
						|
    GIT_REPOSITORY "https://github.com/raysan5/raylib.git"
 | 
						|
    GIT_TAG "master"
 | 
						|
    GIT_PROGRESS TRUE
 | 
						|
    GIT_SHALLOW TRUE
 | 
						|
)
 | 
						|
 | 
						|
FetchContent_MakeAvailable(raylib)
 | 
						|
 | 
						|
add_executable(clay_examples_introducing_clay_video_demo main.c)
 | 
						|
 | 
						|
target_compile_options(clay_examples_introducing_clay_video_demo PUBLIC)
 | 
						|
target_include_directories(clay_examples_introducing_clay_video_demo PUBLIC .)
 | 
						|
 | 
						|
target_link_libraries(clay_examples_introducing_clay_video_demo PUBLIC raylib)
 | 
						|
 | 
						|
if(MSVC)
 | 
						|
  set(CMAKE_C_FLAGS_DEBUG "/D CLAY_DEBUG")
 | 
						|
else()
 | 
						|
  set(CMAKE_C_FLAGS_DEBUG "-Wall -Werror -Wno-error=missing-braces -DCLAY_DEBUG")
 | 
						|
  set(CMAKE_C_FLAGS_RELEASE "-O3")
 | 
						|
endif()
 | 
						|
 | 
						|
add_custom_command(
 | 
						|
        TARGET clay_examples_introducing_clay_video_demo POST_BUILD
 | 
						|
        COMMAND ${CMAKE_COMMAND} -E copy_directory
 | 
						|
        ${CMAKE_CURRENT_SOURCE_DIR}/resources
 | 
						|
        ${CMAKE_CURRENT_BINARY_DIR}/resources)
 |