mirror of
https://github.com/nicbarker/clay.git
synced 2025-01-24 02:16:03 +00:00
11 lines
325 B
CMake
11 lines
325 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)
|
|
target_include_directories(clay_official_website PUBLIC .)
|
|
|
|
set(CMAKE_CXX_FLAGS_RELEASE "-O3") |