This commit is contained in:
2025-08-21 13:43:42 +08:00
parent 84ffd021a2
commit eb20c59347
6 changed files with 162 additions and 3 deletions

11
CMakeLists.txt Normal file
View File

@@ -0,0 +1,11 @@
cmake_minimum_required(VERSION 4.0)
project(cyzg C)
set(CMAKE_C_STANDARD 11)
add_executable(cyzg main.c)
set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -Os -DNDEBUG")
set(CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE} -Os -DNDEBUG")