mirror of
https://github.com/hyprwm/hyprsysteminfo.git
synced 2026-05-06 04:28:31 +02:00
75 lines
1.8 KiB
CMake
75 lines
1.8 KiB
CMake
cmake_minimum_required(VERSION 3.19)
|
|
|
|
file(READ "${CMAKE_SOURCE_DIR}/VERSION" VER_RAW)
|
|
string(STRIP ${VER_RAW} HYPRSYSTEMINFO_VERSION)
|
|
|
|
add_compile_definitions(HYPRSYSTEMINFO_VERSION="${HYPRSYSTEMINFO_VERSION}")
|
|
|
|
project(
|
|
hyprsysteminfo
|
|
VERSION ${HYPRSYSTEMINFO_VERSION}
|
|
DESCRIPTION "System info utility for Hyprland")
|
|
|
|
include(CTest)
|
|
include(CheckIncludeFile)
|
|
include(GNUInstallDirs)
|
|
|
|
set(PREFIX ${CMAKE_INSTALL_PREFIX})
|
|
set(INCLUDE ${CMAKE_INSTALL_FULL_INCLUDEDIR})
|
|
set(LIBDIR ${CMAKE_INSTALL_FULL_LIBDIR})
|
|
|
|
find_package(glaze QUIET)
|
|
if (NOT glaze_FOUND)
|
|
set(GLAZE_VERSION v6.1.0)
|
|
message(STATUS "glaze dependency not found, retrieving ${GLAZE_VERSION} with FetchContent")
|
|
include(FetchContent)
|
|
FetchContent_Declare(
|
|
glaze
|
|
GIT_REPOSITORY https://github.com/stephenberry/glaze.git
|
|
GIT_TAG ${GLAZE_VERSION}
|
|
GIT_SHALLOW TRUE
|
|
)
|
|
FetchContent_MakeAvailable(glaze)
|
|
endif()
|
|
|
|
find_package(PkgConfig REQUIRED)
|
|
pkg_check_modules(
|
|
deps
|
|
REQUIRED
|
|
IMPORTED_TARGET
|
|
hyprtoolkit
|
|
hyprutils>=0.10.2
|
|
libdrm
|
|
libpci
|
|
pixman-1
|
|
)
|
|
|
|
set(CMAKE_CXX_STANDARD 23)
|
|
add_compile_options(
|
|
-Wall
|
|
-Wextra
|
|
-Wno-unused-parameter
|
|
-Wno-unused-value
|
|
-Wno-missing-field-initializers
|
|
-Wpedantic)
|
|
set(CMAKE_EXPORT_COMPILE_COMMANDS TRUE)
|
|
|
|
if(CMAKE_BUILD_TYPE MATCHES Debug OR CMAKE_BUILD_TYPE MATCHES DEBUG)
|
|
message(STATUS "Configuring hyprsysteminfo in Debug")
|
|
add_compile_definitions(hyprsysteminfo_DEBUG)
|
|
else()
|
|
add_compile_options(-O3)
|
|
message(STATUS "Configuring hyprsysteminfo in Release")
|
|
endif()
|
|
|
|
file(GLOB_RECURSE SRCFILES CONFIGURE_DEPENDS "src/*.cpp" "include/*.hpp")
|
|
|
|
add_executable(hyprsysteminfo ${SRCFILES})
|
|
|
|
target_link_libraries(hyprsysteminfo PkgConfig::deps)
|
|
|
|
install(
|
|
FILES assets/install/hyprsysteminfo.desktop
|
|
DESTINATION "share/applications")
|
|
|
|
install(TARGETS hyprsysteminfo)
|