We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f8e7b4 commit def0823Copy full SHA for def0823
compiler-rt/cmake/Modules/AddCompilerRT.cmake
@@ -2,6 +2,12 @@ include(ExternalProject)
2
include(CompilerRTUtils)
3
include(HandleCompilerRT)
4
5
+# CMP0114: ExternalProject step targets fully adopt their steps.
6
+# New in CMake 3.19: https://cmake.org/cmake/help/latest/policy/CMP0114.html
7
+if(POLICY CMP0114)
8
+ cmake_policy(SET CMP0114 OLD)
9
+endif()
10
+
11
function(set_target_output_directories target output_dir)
12
# For RUNTIME_OUTPUT_DIRECTORY variable, Multi-configuration generators
13
# append a per-configuration subdirectory to the specified directory.
0 commit comments