Skip to content

Commit

Permalink
Use full path to include 'tests' directory (#4769)
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinGliewe authored Jan 10, 2024
1 parent 65b5077 commit ebe1d4b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rerun_cpp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,6 @@ install(FILES
# -----------------------------------------------------------------------------
# Add tests if they exist (they are not part of the distribution zip).
# Has direct dependency to arrow, so needs to happen last.
if(EXISTS tests)
add_subdirectory(tests)
if(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/tests)
add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/tests)
endif()

0 comments on commit ebe1d4b

Please sign in to comment.