Skip to content

Commit

Permalink
change example CMake dirs
Browse files Browse the repository at this point in the history
  • Loading branch information
pantor committed Sep 5, 2024
1 parent c3ade8a commit 4ba04dc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/CMakeLists-directory.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)
2 changes: 1 addition & 1 deletion examples/CMakeLists-installed.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)

0 comments on commit 4ba04dc

Please sign in to comment.