From 4ba04dc7eb05611b217b3b2eed39f249ad45b627 Mon Sep 17 00:00:00 2001 From: pantor Date: Thu, 5 Sep 2024 22:17:49 +0200 Subject: [PATCH] change example CMake dirs --- examples/CMakeLists-directory.txt | 2 +- examples/CMakeLists-installed.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/CMakeLists-directory.txt b/examples/CMakeLists-directory.txt index 9f6e39ab..11138b58 100644 --- a/examples/CMakeLists-directory.txt +++ b/examples/CMakeLists-directory.txt @@ -8,7 +8,7 @@ include_directories(include) link_directories(lib) # Build the position example -add_executable(example-position examples/01_position.cpp) +add_executable(example-position 01_position.cpp) target_compile_features(example-position PUBLIC cxx_std_17) target_link_libraries(example-position ruckig) \ No newline at end of file diff --git a/examples/CMakeLists-installed.txt b/examples/CMakeLists-installed.txt index 438aca24..3719a9df 100644 --- a/examples/CMakeLists-installed.txt +++ b/examples/CMakeLists-installed.txt @@ -7,7 +7,7 @@ project(ruckig_examples) find_package(ruckig REQUIRED) # Build the position example -add_executable(example-position examples/01_position.cpp) +add_executable(example-position 01_position.cpp) target_compile_features(example-position PUBLIC cxx_std_17) target_link_libraries(example-position PRIVATE ruckig::ruckig) \ No newline at end of file