2025-01-09 20:08:48 +00:00
|
|
|
cmake_minimum_required(VERSION 3.27)
|
|
|
|
project(clay_examples_raylib_multi_context 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_raylib_multi_context main.c)
|
|
|
|
|
|
|
|
target_compile_options(clay_examples_raylib_multi_context PUBLIC)
|
|
|
|
target_include_directories(clay_examples_raylib_multi_context PUBLIC .)
|
|
|
|
|
|
|
|
target_link_libraries(clay_examples_raylib_multi_context PUBLIC raylib)
|
|
|
|
|
2025-01-29 04:14:01 +00:00
|
|
|
set(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG}")
|
2025-02-04 04:00:19 +00:00
|
|
|
set(CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE}")
|
2025-01-09 20:08:48 +00:00
|
|
|
|
|
|
|
add_custom_command(
|
|
|
|
TARGET clay_examples_raylib_multi_context POST_BUILD
|
|
|
|
COMMAND ${CMAKE_COMMAND} -E copy_directory
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/resources
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/resources)
|