Skip to content

Commit 7eecf69

Browse files
committed
fix
1 parent 6010f95 commit 7eecf69

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

CMake/VeloxUtils.cmake

+2-2
Original file line numberDiff line numberDiff line change
@@ -77,9 +77,9 @@ function(velox_add_library TARGET)
7777
# Create the target if this is the first invocation.
7878
add_library(velox ${_type} ${ARGN})
7979
set_target_properties(velox PROPERTIES LIBRARY_OUTPUT_DIRECTORY
80-
${CMAKE_BINARY_DIR}/lib)
80+
${PROJECT_BINARY_DIR}/lib)
8181
set_target_properties(velox PROPERTIES ARCHIVE_OUTPUT_DIRECTORY
82-
${CMAKE_BINARY_DIR}/lib)
82+
${PROJECT_BINARY_DIR}/lib)
8383
install(TARGETS velox DESTINATION lib/velox)
8484
endif()
8585
# create alias for compatability

0 commit comments

Comments
 (0)