Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ endif()
set(LAZPERF_VERSION "3.0.0")
# First, see if the repo is cloned locally, and if so, compile it
# this is required for CI build of sdist
if(EXISTS "${CMAKE_SOURCE_DIR}/libs/laz-perf")
if(EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/libs/laz-perf")
set(WITH_TEST_TEMP ${WITH_TESTS})
set(WITH_TESTS OFF) # never build lazperf tests
add_subdirectory(libs/laz-perf)
Expand All @@ -106,7 +106,7 @@ else()
set(EXTRA_EXPORT_TARGETS "")
else ()
# assume lazperf is compiled in tandem
message("Lazperf package not found, including ${LAZPERF_DIR}/cpp")
message("Lazperf package not found, assuming compiled in tandem...")
set(LAZPERF_LIB_NAME "lazperf")
set(EXTRA_EXPORT_TARGETS "lazperf")
endif ()
Expand Down