Hyprland/CMakeLists.txt

151 lines
4.8 KiB
CMake
Raw Normal View History

2023-02-09 09:57:26 +01:00
cmake_minimum_required(VERSION 3.19)
2023-01-11 17:41:03 +01:00
include(CheckIncludeFile)
2023-01-06 15:21:42 +01:00
# Get version
file(READ ${CMAKE_CURRENT_SOURCE_DIR}/props.json PROPS)
string(JSON VER GET ${PROPS} version)
project(Hyprland
2022-03-16 20:50:55 +01:00
DESCRIPTION "A Modern C++ Wayland Compositor"
2023-01-06 15:21:42 +01:00
VERSION ${VER}
2022-03-16 20:50:55 +01:00
)
set(CMAKE_MESSAGE_LOG_LEVEL "STATUS")
2022-10-27 12:26:35 +02:00
message(STATUS "Gathering git info")
2022-03-16 20:50:55 +01:00
2022-04-22 18:14:25 +02:00
# Get git info
# hash and branch
execute_process(
COMMAND git rev-parse --abbrev-ref HEAD
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
OUTPUT_VARIABLE GIT_BRANCH
OUTPUT_STRIP_TRAILING_WHITESPACE)
execute_process(
COMMAND git rev-parse HEAD
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
OUTPUT_VARIABLE GIT_COMMIT_HASH
OUTPUT_STRIP_TRAILING_WHITESPACE)
execute_process(
2022-12-09 14:57:39 +01:00
COMMAND sh -c "git show ${GIT_COMMIT_HASH} | head -n 5 | tail -n 1 | sed -e 's/#//g' -e 's/\"//g'"
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
OUTPUT_VARIABLE GIT_COMMIT_MESSAGE
OUTPUT_STRIP_TRAILING_WHITESPACE)
2022-04-22 18:33:30 +02:00
execute_process(
2022-10-22 08:23:52 +02:00
COMMAND sh -c "git diff-index --quiet HEAD -- || echo \"dirty\""
2022-04-22 18:33:30 +02:00
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
OUTPUT_VARIABLE GIT_DIRTY
OUTPUT_STRIP_TRAILING_WHITESPACE)
2022-04-22 18:14:25 +02:00
#
#
if(CMAKE_BUILD_TYPE MATCHES Debug OR CMAKE_BUILD_TYPE MATCHES DEBUG)
2022-10-27 12:26:35 +02:00
message(STATUS "Configuring Hyprland in Debug with CMake")
add_compile_definitions(HYPRLAND_DEBUG)
else()
add_compile_options(-O3)
2022-10-27 12:26:35 +02:00
message(STATUS "Configuring Hyprland in Release with CMake")
endif()
2022-10-27 12:26:35 +02:00
include_directories(
.
"subprojects/wlroots/include/"
"subprojects/wlroots/build/include/"
"subprojects/udis86/")
set(CMAKE_CXX_STANDARD 23)
add_compile_definitions(WLR_USE_UNSTABLE)
2023-04-22 13:38:04 +02:00
add_compile_options(-Wall -Wextra -Wno-unused-parameter -Wno-unused-value -Wno-missing-field-initializers -Wno-narrowing -Wno-pointer-arith -Wno-format-truncation)
add_link_options(-rdynamic)
set(CMAKE_ENABLE_EXPORTS TRUE)
2022-10-27 12:26:35 +02:00
message(STATUS "Checking deps...")
2022-03-16 20:50:55 +01:00
find_package(Threads REQUIRED)
find_package(PkgConfig REQUIRED)
2023-03-20 16:02:47 +01:00
pkg_check_modules(deps REQUIRED IMPORTED_TARGET wayland-server wayland-client wayland-cursor wayland-protocols cairo libdrm egl xkbcommon libinput pango pangocairo) # we do not check for wlroots, as we provide it ourselves
2022-03-16 20:50:55 +01:00
file(GLOB_RECURSE SRCFILES CONFIGURE_DEPENDS "src/*.cpp")
2022-03-16 20:50:55 +01:00
add_executable(Hyprland ${SRCFILES})
2023-03-16 16:40:50 +01:00
if(CMAKE_BUILD_TYPE MATCHES Debug OR CMAKE_BUILD_TYPE MATCHES DEBUG)
message(STATUS "Setting debug flags")
target_link_libraries(Hyprland asan)
add_compile_options(-pg -no-pie -fno-builtin -fsanitize=address)
add_link_options(-pg -no-pie -fno-builtin)
endif()
include(CheckLibraryExists)
check_library_exists(execinfo backtrace "" HAVE_LIBEXECINFO)
if(HAVE_LIBEXECINFO)
target_link_libraries(Hyprland PRIVATE execinfo)
endif()
if(LEGACY_RENDERER)
2022-04-13 17:34:13 +02:00
message(STATUS "Using the legacy GLES2 renderer!")
add_compile_definitions(LEGACY_RENDERER)
endif()
2022-04-13 17:34:13 +02:00
if(NO_XWAYLAND)
2022-04-20 15:58:02 +02:00
message(STATUS "Using the NO_XWAYLAND flag, disabling XWayland!")
add_compile_definitions(NO_XWAYLAND)
else()
2022-10-27 12:26:35 +02:00
message(STATUS "XWAYLAND Enabled (NO_XWAYLAND not defined) checking deps...")
pkg_check_modules(xcbdep REQUIRED xcb)
target_link_libraries(Hyprland xcb)
endif()
2022-03-16 20:50:55 +01:00
if(NO_SYSTEMD)
message(STATUS "SYSTEMD support is disabled...")
else()
message(STATUS "SYSTEMD support is requested (NO_SYSTEMD not defined) checking deps...")
pkg_check_modules(LIBSYSTEMD libsystemd)
2023-01-11 17:41:03 +01:00
check_include_file("systemd/sd-daemon.h" SYSTEMDH)
if(LIBSYSTEMD_FOUND AND SYSTEMDH)
add_compile_definitions(USES_SYSTEMD)
target_link_libraries(Hyprland "${LIBSYSTEMD_LIBRARIES}")
else()
2023-01-11 17:41:03 +01:00
message(WARNING "Systemd support requested but libsystemd or systemd headers were not found")
endif()
endif()
target_compile_definitions(Hyprland
PRIVATE
"GIT_COMMIT_HASH=\"${GIT_COMMIT_HASH}\""
"GIT_BRANCH=\"${GIT_BRANCH}\""
"GIT_COMMIT_MESSAGE=\"${GIT_COMMIT_MESSAGE}\""
"GIT_DIRTY=\"${GIT_DIRTY}\"")
2022-04-22 18:14:25 +02:00
2022-03-16 20:50:55 +01:00
target_link_libraries(Hyprland rt)
set(CPACK_PROJECT_NAME ${PROJECT_NAME})
set(CPACK_PROJECT_VERSION ${PROJECT_VERSION})
include(CPack)
2022-10-27 12:26:35 +02:00
message(STATUS "Setting link libraries")
2022-03-16 20:50:55 +01:00
target_link_libraries(Hyprland PkgConfig::deps)
target_link_libraries(Hyprland
2022-12-12 15:38:50 +01:00
${CMAKE_SOURCE_DIR}/subprojects/wlroots/build/libwlroots.so.12032 # wlroots is provided by us
2022-03-21 16:13:43 +01:00
pixman-1
2022-03-24 17:17:08 +01:00
OpenGL
GLESv2
pthread
2022-03-16 20:50:55 +01:00
${CMAKE_THREAD_LIBS_INIT}
${CMAKE_SOURCE_DIR}/ext-workspace-unstable-v1-protocol.o
${CMAKE_SOURCE_DIR}/wlr-foreign-toplevel-management-unstable-v1-protocol.o
${CMAKE_SOURCE_DIR}/hyprland-toplevel-export-v1-protocol.o
${CMAKE_SOURCE_DIR}/hyprland-global-shortcuts-v1-protocol.o
${CMAKE_SOURCE_DIR}/fractional-scale-v1-protocol.o
${CMAKE_SOURCE_DIR}/text-input-unstable-v1-protocol.o
${CMAKE_SOURCE_DIR}/wlr-screencopy-unstable-v1-protocol.o
${CMAKE_SOURCE_DIR}/subprojects/udis86/build/libudis86/liblibudis86.a
2022-03-16 20:50:55 +01:00
)