mirror of
https://github.com/nicbarker/clay.git
synced 2025-04-03 21:08:04 +00:00
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
10 lines
255 B
CMake
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 .)
|