Skip to content

Commit

Permalink
Merge pull request duckdb#10484 from Flogex/extension-build-script
Browse files Browse the repository at this point in the history
Use `CMAKE_CURRENT_BINARY_DIR` in CMakeLists
  • Loading branch information
Mytherin authored Feb 7, 2024
2 parents e9cedd7 + 24b4d78 commit 703a2fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -676,7 +676,7 @@ if (NOT EXTENSION_CONFIG_BUILD AND NOT ${EXTENSION_TESTS_ONLY} AND NOT CLANG_TID
add_custom_target(
duckdb_local_extension_repo ALL
COMMAND
${Python3_EXECUTABLE} scripts/create_local_extension_repo.py "${DUCKDB_NORMALIZED_VERSION}" "${CMAKE_BINARY_DIR}/duckdb_platform_out" "${CMAKE_CURRENT_BINARY_DIR}" "${LOCAL_EXTENSION_REPO_DIR}" "${EXTENSION_POSTFIX}"
${Python3_EXECUTABLE} scripts/create_local_extension_repo.py "${DUCKDB_NORMALIZED_VERSION}" "${CMAKE_CURRENT_BINARY_DIR}/duckdb_platform_out" "${CMAKE_CURRENT_BINARY_DIR}" "${LOCAL_EXTENSION_REPO_DIR}" "${EXTENSION_POSTFIX}"
WORKING_DIRECTORY ${PROJECT_SOURCE_DIR}
COMMENT Create local extension repository)
add_dependencies(duckdb_local_extension_repo duckdb_platform)
Expand Down

0 comments on commit 703a2fd

Please sign in to comment.