From c8b15bccdab25bbc86a524f3b64b1c5a3458315a Mon Sep 17 00:00:00 2001 From: Rye Mutt <rye@alchemyviewer.org> Date: Sat, 8 Aug 2020 17:33:48 -0400 Subject: [PATCH] Set various cmake policies to unbreak linking on linux --- indra/CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/indra/CMakeLists.txt b/indra/CMakeLists.txt index f34114b8c23..87fdcbb8fa0 100644 --- a/indra/CMakeLists.txt +++ b/indra/CMakeLists.txt @@ -4,6 +4,8 @@ # other commands to guarantee full compatibility # with the version specified cmake_minimum_required(VERSION 3.13.0 FATAL_ERROR) +cmake_policy(SET CMP0063 NEW) +cmake_policy(SET CMP0072 OLD) set(ROOT_PROJECT_NAME "Alchemy" CACHE STRING "The root project/makefile/solution name. Defaults to Alchemy.") -- GitLab