mirror of
https://github.com/Kitware/CMake.git
synced 2026-02-20 06:00:30 -06:00
-- Allow for testing default toolset settings If CMake_TEST_GreenHillsMULTI_config is not defined then just run the GHS tests using defaults. -- Handle paths that contain spaces -- Update test suite to use "-non_shared" linker option Fixes linking issue if GHS is not shipped with shared libraries -- Other minor cleanup
14 lines
428 B
CMake
14 lines
428 B
CMake
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
# file Copyright.txt or https://cmake.org/licensing for details.
|
|
|
|
cmake_minimum_required(VERSION 3.12 FATAL_ERROR)
|
|
|
|
project(test C)
|
|
|
|
add_library(obj1 OBJECT testObj.c testObj.h sub/testObj.c testObj2.c)
|
|
|
|
add_executable(exe1 exe.c $<TARGET_OBJECTS:obj1>)
|
|
if(CMAKE_C_COMPILER_ID STREQUAL "GHS")
|
|
target_link_options(exe1 PRIVATE "-non_shared")
|
|
endif()
|