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