clay/examples/clay-official-website/CMakeLists.txt

12 lines
352 B
CMake
Raw Normal View History

2024-11-26 23:13:11 +00:00
cmake_minimum_required(VERSION 3.27)
2024-08-23 04:05:23 +00:00
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)
2024-08-23 04:05:23 +00:00
target_include_directories(clay_official_website PUBLIC .)
set(CMAKE_CXX_FLAGS_RELEASE "-O3")