From 4ff59a810de5c3e9125ed3ec2ec1d12d02437b64 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Wed, 27 Nov 2019 22:56:30 -0500 Subject: Initial commit --- CMakeLists.txt | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 CMakeLists.txt (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..524a077 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,6 @@ +cmake_minimum_required(VERSION 3.15) +project(spm C) + +set(CMAKE_C_STANDARD 99) + +add_executable(spm main.c) \ No newline at end of file -- cgit