Skip to content

Commit 986af12

Browse files
authored
Merge pull request #531 from rib/fakenect-depth-mm-video-yuv
fakenect: support applications needing _DEPTH_MM and _VIDEO_YUV_RAW Reviewed-by: Benn Snyder <[email protected]>
2 parents 16b53cd + 7c2e28d commit 986af12

File tree

7 files changed

+2562
-39
lines changed

7 files changed

+2562
-39
lines changed

fakenect/CMakeLists.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
######################################################################################
44
SET(EXECUTABLE_OUTPUT_PATH ${CMAKE_BINARY_DIR}/bin)
55
SET(LIBRARY_OUTPUT_PATH ${CMAKE_BINARY_DIR}/lib/fakenect)
6-
add_library (fakenect SHARED fakenect.c)
6+
include_directories(../src)
7+
add_library (fakenect SHARED fakenect.c parson.c ../src/registration.c)
78
set_target_properties ( fakenect PROPERTIES
89
VERSION ${PROJECT_VER}
910
SOVERSION ${PROJECT_APIVER}
@@ -13,7 +14,7 @@ target_link_libraries(fakenect ${MATH_LIB})
1314
install (TARGETS fakenect
1415
DESTINATION "${PROJECT_LIBRARY_INSTALL_DIR}/fakenect")
1516

16-
add_executable(fakenect-record record.c)
17+
add_executable(fakenect-record record.c parson.c)
1718
target_link_libraries(fakenect-record freenect ${MATH_LIB})
1819
install (TARGETS fakenect-record
1920
DESTINATION bin)

0 commit comments

Comments
 (0)