Files
conan-build/recipes/xkbcommon/all/test_package/test_package.cpp
Aleksandr Vodyanov 3759e1163f [DO-981] qt package (!15)
Co-authored-by: aleksandr.vodyanov <aleksandr.vodyanov@avroid.tech>
Reviewed-on: https://git.avroid.tech/Conan/conan_build/pulls/15
2025-02-13 12:25:48 +03:00

9 lines
156 B
C++

#include "xkbcommon/xkbcommon.h"
int main()
{
struct xkb_context *ctx = xkb_context_new(XKB_CONTEXT_NO_FLAGS);
if (!ctx) return 1;
return 0;
}