mirror of
https://github.com/nicbarker/clay.git
synced 2025-01-24 02:16:03 +00:00
11 lines
317 B
CMake
11 lines
317 B
CMake
cmake_minimum_required(VERSION 3.28)
|
|
project(clay_official_website C)
|
|
|
|
set(CMAKE_C_STANDARD 99)
|
|
|
|
add_executable(clay_official_website main.c)
|
|
|
|
target_compile_options(clay_official_website PUBLIC -Wno-initializer-overrides)
|
|
target_include_directories(clay_official_website PUBLIC .)
|
|
|
|
set(CMAKE_CXX_FLAGS_RELEASE "-O3") |