cmake_minimum_required(VERSION 3.19) set(VERSION 0.1.0) project(hyprwayland-scanner DESCRIPTION "A hyprland version of wayland-scanner in and for C++" VERSION ${VERSION} ) set(CMAKE_MESSAGE_LOG_LEVEL "STATUS") if(CMAKE_BUILD_TYPE MATCHES Debug OR CMAKE_BUILD_TYPE MATCHES DEBUG) message(STATUS "Configuring hyprwayland-scanner in Debug with CMake") add_compile_definitions(HYPRLAND_DEBUG) else() add_compile_options(-O3) message(STATUS "Configuring hyprwayland-scanner in Release with CMake") endif() # configure set(CMAKE_CXX_STANDARD 23) add_compile_options(-Wall -Wextra -Wno-unused-parameter -Wno-unused-value -Wno-missing-field-initializers -Wno-narrowing) add_compile_definitions(SCANNER_VERSION="${VERSION}") # dependencies message(STATUS "Checking deps...") find_package(Threads REQUIRED) find_package(PkgConfig REQUIRED) pkg_check_modules(deps REQUIRED IMPORTED_TARGET pugixml) file(GLOB_RECURSE SRCFILES CONFIGURE_DEPENDS "src/*.cpp") add_executable(hyprwayland-scanner ${SRCFILES}) target_link_libraries(hyprwayland-scanner PRIVATE rt Threads::Threads PkgConfig::deps) # Installation install(TARGETS hyprwayland-scanner)