From af4c20fa20c51963652471bf4ab73db9a3492ba7 Mon Sep 17 00:00:00 2001 From: Michael Brockus Date: Wed, 3 Jul 2019 21:04:07 -0700 Subject: [PATCH] Updating CMakeLists.txt. --- CMakeLists.txt | 23 +++++++++++------------ 1 file changed, 11 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0eddcd7..bf74cec 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,11 +1,13 @@ -##################################################### -# FILE NAME CMakeLists.txt # -# # -# WRITTEN BY Michael Brockus. # -# # -# PURPOSE contains CMake statements. # -# # -##################################################### +################################################################################### +# # +# 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) @@ -58,12 +60,9 @@ install(TARGETS "unity" EXPORT "unityConfig" ARCHIVE DESTINATION "${CMAKE_CURRENT_SOURCE_DIR}/${CMAKE_INSTALL_LIBDIR}" LIBRARY DESTINATION "${CMAKE_CURRENT_SOURCE_DIR}/${CMAKE_INSTALL_LIBDIR}" RUNTIME DESTINATION "${CMAKE_CURRENT_SOURCE_DIR}/${CMAKE_INSTALL_BINDIR}" - - INCLUDES DESTINATION "${CMAKE_INSTALL_LIBDIR}" -) + INCLUDES DESTINATION "${CMAKE_INSTALL_LIBDIR}") install(DIRECTORY src/ DESTINATION src) - install(EXPORT unityConfig DESTINATION share/unityConfig/cmake) # This makes the project importable from the build directory -- GitLab