clay/examples/clay-official-website/CMakeLists.txt
Nic Barker 9d940c1f8e
Some checks failed
CMake on multiple platforms / build (Release, cl, cl, windows-latest) (push) Has been cancelled
CMake on multiple platforms / build (Release, clang, clang++, ubuntu-latest) (push) Has been cancelled
CMake on multiple platforms / build (Release, gcc, g++, ubuntu-latest) (push) Has been cancelled
[Core] Replace config macros with a single unified configuration struct (#240)
2025-02-04 17:00:19 +13:00

10 lines
255 B
CMake

cmake_minimum_required(VERSION 3.27)
project(clay_official_website C)
set(CMAKE_C_STANDARD 99)
add_executable(clay_official_website main.c)
target_compile_options(clay_official_website PUBLIC)
target_include_directories(clay_official_website PUBLIC .)