From d16af33f3654e99fba368ab96d85b8a10b705de5 Mon Sep 17 00:00:00 2001 From: Gregory Gauthier Date: Fri, 30 Jan 2026 12:45:27 +0000 Subject: [PATCH] pruning jebrains ide junk --- CMakeLists.txt | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt deleted file mode 100644 index d041a4d..0000000 --- a/CMakeLists.txt +++ /dev/null @@ -1,18 +0,0 @@ -# CMakeLists.txt - For CLion IDE support only -# Actual builds should use: make (Linux) or make -f MAKEFILE.TC (DOS/Win32) - -cmake_minimum_required(VERSION 3.10) -project(cnotes C) - -# Force C89/C90 standard -set(CMAKE_C_STANDARD 90) -set(CMAKE_C_STANDARD_REQUIRED ON) -set(CMAKE_C_EXTENSIONS OFF) - -# Match our Makefile flags for consistent IDE warnings -set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -ansi -Wpedantic -Wall -Wextra") - -include_directories(include) - -add_executable(cnadd src/cnadd.c) -add_executable(cndump src/cndump.c)