# Copyright 2024 Haply Robotics Inc. All rights reserved.
file(GLOB_RECURSE SOURCE_FILES LIST_DIRECTORIES false "*.cpp")
add_executable(01-haply-inverse-print-inverse3 ${SOURCE_FILES})
target_include_directories(01-haply-inverse-print-inverse3 PUBLIC ${PROJECT_SOURCE_DIR})
target_compile_features(01-haply-inverse-print-inverse3 PUBLIC cxx_std_11)
target_link_libraries(01-haply-inverse-print-inverse3 PRIVATE hv_static nlohmann_json::nlohmann_json)
install(TARGETS 01-haply-inverse-print-inverse3)