mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-07 22:59:56 -05:00
2aa83fa15b
Fixes: #22619
14 lines
282 B
CMake
14 lines
282 B
CMake
cmake_minimum_required(VERSION 3.23...3.24)
|
|
|
|
if(DEFINED include_before_project)
|
|
include("${include_before_project}")
|
|
endif()
|
|
|
|
project(${RunCMake_TEST} NONE)
|
|
|
|
if(DEFINED include_after_project)
|
|
include("${include_after_project}")
|
|
endif()
|
|
|
|
include(${RunCMake_TEST}.cmake OPTIONAL)
|