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}" diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt new file mode 100644 index 0000000..4aa2bcb --- /dev/null +++ b/src/CMakeLists.txt @@ -0,0 +1,16 @@ +################################################################################### +# # +# 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")