From e6f38c2792b2000fa470e9a947f68089f07d34c0 Mon Sep 17 00:00:00 2001 From: Michael Brockus <55331536+michaelbadcrumble@users.noreply.github.com> Date: Tue, 17 Sep 2019 12:14:47 -0700 Subject: [PATCH] Update CMakeLists.txt Moved the add library method into sub dir. Also made this CMakeLists.txt script compatible for versions os CMake starting from 3.x and up. --- CMakeLists.txt | 33 ++------------------------------- 1 file changed, 2 insertions(+), 31 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index bf74cec..1954949 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -8,34 +8,15 @@ # License: MIT # # # ################################################################################### -cmake_minimum_required(VERSION 3.13.2.0 FATAL_ERROR) +cmake_minimum_required(VERSION 3 FATAL_ERROR) - -# -# CMake: Declare project -# project(unity LANGUAGES C DESCRIPTION "C Unit testing framework.") - -# -# CMake: Creation of library -# -add_library("unity" STATIC) +add_subdirectory("src") - -# -# CMake: Adding source to target -# -target_sources("unity" PRIVATE "src/unity.c") - - - -# -# CMake: Including directories to target -# target_include_directories("unity" PUBLIC "$" @@ -44,18 +25,8 @@ target_include_directories("unity" PRIVATE "src" ) - - -# -# CMake: Give target an alias -# add_library("unity::framework" ALIAS "unity") - - -# -# CMake: export project -# install(TARGETS "unity" EXPORT "unityConfig" ARCHIVE DESTINATION "${CMAKE_CURRENT_SOURCE_DIR}/${CMAKE_INSTALL_LIBDIR}" LIBRARY DESTINATION "${CMAKE_CURRENT_SOURCE_DIR}/${CMAKE_INSTALL_LIBDIR}"