mirror of
https://github.com/hyprwm/Hypr.git
synced 2024-11-02 06:45:58 +01:00
c8c879f103
I have had this crash my WM on boot once in a blue moon. This happens rarely and should NOT happen when the WM is already running. If anyone has a solution, feel free to contribute. If you want to be 100% safe, use bar_enabled=0 in the config.
35 lines
No EOL
770 B
CMake
35 lines
No EOL
770 B
CMake
cmake_minimum_required(VERSION 3.4)
|
|
project(Hypr
|
|
VERSION 0.1
|
|
DESCRIPTION "A Modern OOP C++ Window Manager"
|
|
)
|
|
|
|
add_compile_options(-std=c++17)
|
|
add_compile_options(-Wall -Wextra)
|
|
find_package(Threads REQUIRED)
|
|
|
|
find_package(PkgConfig REQUIRED)
|
|
pkg_check_modules(deps REQUIRED IMPORTED_TARGET glib-2.0 harfbuzz cairo gdk)
|
|
|
|
file(GLOB_RECURSE SRCFILES "src/*.cpp")
|
|
|
|
add_executable(Hypr ${SRCFILES})
|
|
|
|
target_link_libraries(Hypr rt)
|
|
|
|
set(CPACK_PROJECT_NAME ${PROJECT_NAME})
|
|
set(CPACK_PROJECT_VERSION ${PROJECT_VERSION})
|
|
include(CPack)
|
|
|
|
target_link_libraries(Hypr PkgConfig::deps)
|
|
|
|
target_link_libraries(Hypr
|
|
xcb
|
|
xcb-ewmh
|
|
xcb-icccm
|
|
xcb-keysyms
|
|
xcb-randr
|
|
xcb-xinerama
|
|
xcb-cursor
|
|
${CMAKE_THREAD_LIBS_INIT}
|
|
) |