mirror of
https://github.com/ThrowTheSwitch/Unity.git
synced 2026-01-26 09:51:36 +01:00
CMakeLists fixes
This commit is contained in:
committed by
Aurelien Labrosse
parent
53916f823c
commit
b75b19c969
@@ -8,9 +8,15 @@
|
||||
# License: MIT #
|
||||
# #
|
||||
###################################################################################
|
||||
cmake_minimum_required(VERSION 3.13.2.0 FATAL_ERROR)
|
||||
cmake_minimum_required(VERSION 3.0 FATAL_ERROR)
|
||||
|
||||
|
||||
add_library("unity" STATIC)
|
||||
add_library(unity STATIC "unity.c")
|
||||
|
||||
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}")
|
||||
|
||||
|
||||
target_sources("unity" PRIVATE "unity.c")
|
||||
|
||||
Reference in New Issue
Block a user