wl_client/main.cc
2025-02-14 15:37:44 +03:00

15 lines
240 B
C++

#include <iostream>
#include <wayland-client.h>
int main()
{
wl_display* display = wl_display_connect(nullptr);
if (display) {
std::cout << "found\n";
} else {
std::cout << "not found\n";
}
return 0;
}