From eb4fbe2ebdd44dbf9c604553f2ef053d0360dd41 Mon Sep 17 00:00:00 2001 From: Dominic Matarese Date: Mon, 12 Jul 2021 16:21:43 +0000 Subject: required first commit --- CMakeLists.txt | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 CMakeLists.txt (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..6224934 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,7 @@ +cmake_minimum_required(VERSION 3.0) + +project(sic_assembler LANGUAGES C) + +add_executable(sic_assembler main.c) + +install(TARGETS sic_assembler RUNTIME DESTINATION bin) -- cgit v1.2.1