Co-authored-by: aleksandr.vodyanov <aleksandr.vodyanov@avroid.tech> Reviewed-on: https://git.avroid.tech/Conan/conan_build/pulls/15
9 lines
156 B
C++
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;
|
|
}
|