From dc1303d5d1e04ec63b4a5776909cf007fb8fdfe6 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Mon, 1 Nov 2021 18:53:50 -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..c6f5d02 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,6 @@ +cmake_minimum_required(VERSION 2.8) +project(jdtalkc C) + +set(CMAKE_C_STANDARD 99) + +add_executable(jdtalkc main.c) -- cgit