-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Closed
Milestone
Description
On my Ubuntu system, the c headers are installed here:
/usr/local/include/libfreenect/libfreenect.h
/usr/local/include/libfreenect/libfreenect_sync.h
Including libfreenect_sync.h gives the following error:
/usr/local/include/libfreenect/libfreenect_sync.h:29:25: fatal error: libfreenect.h: No such file or directory
This is because libfreenect_sync.h has:
#include <libfreenect.h>
this should be:
#include <libfreenect/libfreenect.h>
or:
#include "libfreenect.h"
(I'm not sure which of the 2 would be best c practice)
Metadata
Metadata
Assignees
Labels
No labels