Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/google/ruy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRuy Contributors <ruy-eng@google.com>2022-08-01 10:43:47 +0300
committerCopybara-Service <copybara-worker@google.com>2022-08-01 10:44:33 +0300
commite214d4c75344ab2da6e52558b961f8cf5dca777d (patch)
tree4f1e83d4369fc84cd58da2dc5249d22c8f76b621
parent72155b3185246e9143f4c6a3a7f283d2ebba8524 (diff)
Include GNUInstallDirs module in top-level CMake filetest_464475210
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: 464475210
-rw-r--r--CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 262d704..f4fe893 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)