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")