From e9b45d6e40667978e625f9e5998a8e2b449ac555 Mon Sep 17 00:00:00 2001 From: Gregory Gauthier Date: Mon, 26 Jan 2026 14:53:22 +0000 Subject: [PATCH] comment cmakelists to reduce confusion --- CMakeLists.txt | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 8654558..2b5962a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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)