Skip to content

Commit

Permalink
Merge pull request OpenKinect#531 from rib/fakenect-depth-mm-video-yuv
Browse files Browse the repository at this point in the history
fakenect: support applications needing _DEPTH_MM and _VIDEO_YUV_RAW

Reviewed-by: Benn Snyder <[email protected]>
  • Loading branch information
piedar authored Nov 22, 2017
2 parents 16b53cd + 7c2e28d commit 986af12
Show file tree
Hide file tree
Showing 7 changed files with 2,562 additions and 39 deletions.
5 changes: 3 additions & 2 deletions fakenect/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
######################################################################################
SET(EXECUTABLE_OUTPUT_PATH ${CMAKE_BINARY_DIR}/bin)
SET(LIBRARY_OUTPUT_PATH ${CMAKE_BINARY_DIR}/lib/fakenect)
add_library (fakenect SHARED fakenect.c)
include_directories(../src)
add_library (fakenect SHARED fakenect.c parson.c ../src/registration.c)
set_target_properties ( fakenect PROPERTIES
VERSION ${PROJECT_VER}
SOVERSION ${PROJECT_APIVER}
Expand All @@ -13,7 +14,7 @@ target_link_libraries(fakenect ${MATH_LIB})
install (TARGETS fakenect
DESTINATION "${PROJECT_LIBRARY_INSTALL_DIR}/fakenect")

add_executable(fakenect-record record.c)
add_executable(fakenect-record record.c parson.c)
target_link_libraries(fakenect-record freenect ${MATH_LIB})
install (TARGETS fakenect-record
DESTINATION bin)
Expand Down
Loading

0 comments on commit 986af12

Please sign in to comment.