Skip to content

Error in Findfreenect.cmake #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Findfreenect.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -9,21 +9,21 @@ set( LIBRARY_PATHS "/usr /usr/local /opt/local /sw" )
find_path( FREENECT_INCLUDE_DIR
NAMES libfreenect_sync.h
${LIBRARY_PATHS}
PATH_SUFFIEXS include include/libfreenect
PATH_SUFFIXES include include/libfreenect
DOC "The dicrectory where libfreenect_sync.h resides"
)

find_library( FREENECT_SYNC_LIBRARIES
NAMES freenect_sync
${LIBRARY_PATHS}
PATH_SUFFIES lib lib64
PATH_SUFFIXES lib lib64
DOC "The freenect_sync library"
)

find_library( FREENECT_CV_LIBRARIES
NAMES freenect_cv
${LIBRARY_PATHS}
PATH_SUFFIEXS lib lib64
PATH_SUFFIXES lib lib64
DOC "The freenect_cv library"
)

Expand Down