From 3f71e9eccdef4a551e91498b25b7b3ee62d19b8d Mon Sep 17 00:00:00 2001 From: Scott Moreau Date: Tue, 3 Sep 2024 10:00:43 -0600 Subject: [PATCH] core: Add wlroots version to wayfire --version output --- src/main.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index 498bb8e56..0864696c0 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -11,6 +11,8 @@ #include +#include + #include "wayfire/config-backend.hpp" #include "core/plugin-loader.hpp" #include "core/core-impl.hpp" @@ -18,7 +20,8 @@ static void print_version() { std::cout << WAYFIRE_VERSION << "-" << wf::version::git_commit << - " (" __DATE__ ") branch " << wf::version::git_branch << std::endl; + " (" __DATE__ ") branch " << wf::version::git_branch << + " wlroots-" << WLR_VERSION_STR << std::endl; exit(0); }