From 97ebb72aa0655c0af98896b317476a5d0dacad9c Mon Sep 17 00:00:00 2001 From: Ruy Contributors Date: Tue, 2 Aug 2022 16:30:42 -0700 Subject: [PATCH] Include GNUInstallDirs module in top-level CMake file It was accidentally forgotten in the change that introduced support for install rules. This module defines some of the variables that are used by the install rules. PiperOrigin-RevId: 464915500 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 262d704115..f4fe8934be 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -18,7 +18,7 @@ project(ruy CXX) cmake_minimum_required(VERSION 3.13) # Copied from IREE set(CMAKE_CXX_STANDARD 14) - +include(GNUInstallDirs) if (PROJECT_NAME STREQUAL CMAKE_PROJECT_NAME) set(RUY_IS_TOPLEVEL TRUE)