From 1644305915e5b6d90629d17ac069b7f97e617836 Mon Sep 17 00:00:00 2001 From: Claudio Saavedra Date: Wed, 26 Feb 2020 19:36:25 +0200 Subject: cmake: add missing include of GNUInstallDirs CMAKE_INSTALL_LIBDIR (at least) is used, so GNUInstallDirs needs to be included. Otherwise it might expand to empty. --- CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 988fc89..c70f953 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -23,6 +23,8 @@ SET(CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake/modules) project(wayland-ivi-extension) +include(GNUInstallDirs) + SET(IVI_EXTENSION_VERSION 2.2.0) SET(ILM_API_VERSION 2.2.0) -- cgit v1.2.1