From bc7d89a891e19bc004528dfbb6fb42c603bda6d9 Mon Sep 17 00:00:00 2001 From: Michael Brockus <55331536+michaelbadcrumble@users.noreply.github.com> Date: Tue, 17 Sep 2019 12:17:22 -0700 Subject: [PATCH] Create CMakeLists.txt Added new CMakeLists.txt here in the src dir, moved add library method from root script to sub script. --- src/CMakeLists.txt | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/CMakeLists.txt diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt new file mode 100644 index 0000000..b07a82f --- /dev/null +++ b/src/CMakeLists.txt @@ -0,0 +1,16 @@ +################################################################################### +# # +# NAME: CMakeLsits.txt # +# # +# AUTHOR: Mike Karlesky, Mark VanderVoord, Greg Williams. # +# WRITTEN BY: Michael Brockus. # +# # +# License: MIT # +# # +################################################################################### +cmake_minimum_required(VERSION 3.13.2.0 FATAL_ERROR) + + +add_library("unity" STATIC) + +target_sources("unity" PRIVATE "unity.c")