Skip to content

Commit

Permalink
adding a BVH Template mini utility..
Browse files Browse the repository at this point in the history
  • Loading branch information
AmmarkoV committed Nov 18, 2021
1 parent 87eae65 commit 301aa3e
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 0 deletions.
1 change: 1 addition & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -354,6 +354,7 @@ add_subdirectory(src/MocapNET2/BVHGUI2)
add_subdirectory(src/MocapNET2/MocapNET2LiveWebcamDemo)
ENDIF(OpenCV_FOUND)

#add_subdirectory(src/MocapNET2/BVHTemplate/)
add_subdirectory(src/MocapNET2/MocapNETLib2/)
add_subdirectory(src/MocapNET2/MocapNETFromCSV/)
add_subdirectory(src/MocapNET2/Converters/Openpose)
Expand Down
16 changes: 16 additions & 0 deletions src/MocapNET2/BVHTemplate/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
project( BVHTemplate )
cmake_minimum_required( VERSION 2.8.7 )
set(CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/../cmake/modules ${CMAKE_MODULE_PATH})


add_executable(BVHTemplate main.c ${BVH_SOURCE} )

target_link_libraries(BVHTemplate rt m pthread )
#add_dependencies(BVHTemplate OGLRendererSandbox)


set_target_properties(BVHTemplate PROPERTIES
ARCHIVE_OUTPUT_DIRECTORY "${CMAKE_SOURCE_DIR}"
LIBRARY_OUTPUT_DIRECTORY "${CMAKE_SOURCE_DIR}"
RUNTIME_OUTPUT_DIRECTORY "${CMAKE_SOURCE_DIR}"
)
Empty file.

0 comments on commit 301aa3e

Please sign in to comment.