From 3863f30efe8d94c95f688b1625c711a368c28e2b Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Wed, 10 Jun 2020 01:32:28 -0400 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..3fd16c8 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,6 @@ +cmake_minimum_required(VERSION 3.16) +project(splitfits C) + +set(CMAKE_C_STANDARD 99) + +add_executable(splitfits splitfits.c) -- cgit