comment cmakelists to reduce confusion

This commit is contained in:
Gregory Gauthier 2026-01-26 14:53:22 +00:00
parent 22a8c48888
commit e9b45d6e40

View File

@ -1,6 +1,12 @@
cmake_minimum_required(VERSION 3.10)
project(cordle C)
# NOTE: This CMakeLists.txt is provided for IDE integration (CLion, VSCode, etc.)
# For production builds and installation, use the Makefile instead:
# - make (build)
# - make install (system-wide installation)
# - make help (see all targets)
# Pure C90 configuration
set(CMAKE_C_STANDARD 90)
set(CMAKE_C_STANDARD_REQUIRED ON)