Update code to v1.0.14 (10)

This commit is contained in:
Caten
2024-02-29 19:35:00 +08:00
parent c2ee3b694c
commit a956d26f6d
3188 changed files with 2317293 additions and 146 deletions

View File

@@ -0,0 +1,25 @@
#!/bin/sh
#
# This tests if using the **installed** headers works.
#
# expects install prefix like /usr as an argument
PREFIX=$1
CMAKE_MAKE_PROGRAM=$2
TMPDIR=$(mktemp -d)
DESTDIR="$TMPDIR" $CMAKE_MAKE_PROGRAM install
echo \
"
#include <rfb/rfb.h>
#include <rfb/rfbclient.h>
int main()
{
return 0;
}
" > "$TMPDIR"/includetest.c
cc -I "$TMPDIR/$PREFIX" "$TMPDIR"/includetest.c