pruning jebrains ide junk

This commit is contained in:
Gregory Gauthier 2026-01-30 12:45:27 +00:00
parent 50ba4c6801
commit d16af33f36

View File

@ -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)