joaquimrocha / Skeltrack

A Free Software skeleton tracking library
GNU Lesser General Public License v3.0
294 stars 63 forks source link

Incorrect build instructions #2

Closed cmcfarla closed 11 years ago

cmcfarla commented 12 years ago

The INSTALL file indicates that the build should be done with ./configure; make; make install; but a configure script is not distributed with the code. Autogen.sh appears to generate one, but the Makefiles it produces will not compile the example since it is missing headers (gfreenect.h?). Can you please provide build instructions?

joaquimrocha commented 12 years ago

Hi, the INSTALL file is a generic one generated for common GNU projects. You can build it with the examples by: ./autogen --enable-examples=yes make make install

If you have trouble with the place where gfreenect.h is, try setting the following environment variables: export LD_LIBRARY_PATH=/usr/lib64 export PKG_CONFIG_PATH=/usr/lib64/pkgconfig

Hope it helps. I might update the instructions soon.