Blame view

ext_dep/libvncserver/libvncserver-master/test/includetest.sh 385 Bytes
8d728d065   신재종   add libvncserver ...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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