CMake: Suppress CMake warning about GNUInstallDirs

This commit is contained in:
MaroonSkull 2024-08-03 14:10:48 +03:00 committed by Mihai Fufezan
parent 51ffd7fa6f
commit 4ae89e1f22
1 changed files with 3 additions and 3 deletions

View File

@ -1,8 +1,5 @@
cmake_minimum_required(VERSION 3.27)
include(CheckIncludeFile)
include(GNUInstallDirs)
# Get version
file(READ "${CMAKE_SOURCE_DIR}/VERSION" VER_RAW)
string(STRIP ${VER_RAW} VER)
@ -12,6 +9,9 @@ project(
DESCRIPTION "A Modern C++ Wayland Compositor"
VERSION ${VER})
include(CheckIncludeFile)
include(GNUInstallDirs)
set(HYPRLAND_VERSION ${VER})
set(PREFIX ${CMAKE_INSTALL_PREFIX})
set(INCLUDEDIR ${CMAKE_INSTALL_INCLUDEDIR})