
Explicitly enable standard levels in the `CompileFeatures` test that are expected to work in each job regardless of whether compiler inspection detects support.
9 lines
340 B
CMake
9 lines
340 B
CMake
set(CMake_TEST_C_STANDARDS "90;99;11;17;23" CACHE STRING "")
|
|
set(CMake_TEST_CXX_STANDARDS "98;11;14;17;20;23" CACHE STRING "")
|
|
|
|
if (NOT "$ENV{CMAKE_CI_NIGHTLY}" STREQUAL "")
|
|
set(CMake_TEST_TICLANG_TOOLCHAINS "$ENV{CI_PROJECT_DIR}/.gitlab/ticlang" CACHE PATH "")
|
|
endif()
|
|
|
|
include("${CMAKE_CURRENT_LIST_DIR}/configure_external_test.cmake")
|