mirror of
https://github.com/nicbarker/clay.git
synced 2025-01-23 18:06:04 +00:00
c9e1a63378
Some checks failed
CMake on multiple platforms / build (Release, cl, cl, windows-latest) (push) Waiting to run
CMake on multiple platforms / build (Release, clang, clang++, ubuntu-latest) (push) Failing after 58s
CMake on multiple platforms / build (Release, gcc, g++, ubuntu-latest) (push) Failing after 9s
11 lines
349 B
CMake
11 lines
349 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 -Wall -Werror -Wno-unknown-pragmas -Wno-error=missing-braces)
|
|
target_include_directories(clay_official_website PUBLIC .)
|
|
|
|
set(CMAKE_C_FLAGS_RELEASE "-O3") |