mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-05 13:20:47 -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
18 lines
450 B
CMake
18 lines
450 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)
|
|
|
|
if(CMAKE_C_COMPILER_ID STREQUAL "GHS")
|
|
add_link_options("-non_shared")
|
|
endif()
|
|
|
|
add_library(lib1 lib1.c)
|
|
add_executable(exe1 exe1.c)
|
|
target_link_libraries(exe1 lib1)
|
|
|
|
add_subdirectory(sub)
|
|
add_subdirectory(sub2 examples EXCLUDE_FROM_ALL)
|