mirror of
https://github.com/ThrowTheSwitch/Unity.git
synced 2026-01-26 01:41:35 +01:00
17 lines
966 B
CMake
17 lines
966 B
CMake
###################################################################################
|
|
# #
|
|
# NAME: CMakeLists.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")
|