-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
645002d
commit 30e1914
Showing
5 changed files
with
13 additions
and
119 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,3 +2,7 @@ | |
path = duckdb | ||
url = https://github.com/duckdb/duckdb | ||
branch = main | ||
[submodule "extension-ci-tools"] | ||
path = extension-ci-tools | ||
url = [email protected]:duckdb/extension-ci-tools.git | ||
branch = main |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
PROJ_DIR := $(dir $(abspath $(lastword $(MAKEFILE_LIST)))) | ||
|
||
# Configuration of extension | ||
EXT_NAME=quack | ||
EXT_CONFIG=${PROJ_DIR}extension_config.cmake | ||
|
||
include out-of-tree-extension.Makefile | ||
# Include the Makefile from extension-ci-tools | ||
include extension-ci-tools/makefiles/duckdb_extension.Makefile |
Submodule extension-ci-tools
added at
7d022f
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,10 @@ | ||
# Config to build this extension | ||
# This file is included by DuckDB's build system. It specifies which extension to load | ||
|
||
# Extension from this repo | ||
duckdb_extension_load(quack | ||
SOURCE_DIR ${CMAKE_CURRENT_LIST_DIR} | ||
INCLUDE_PATH ${CMAKE_CURRENT_LIST_DIR}src/include | ||
TEST_PATH ${CMAKE_CURRENT_LIST_DIR}src/include | ||
LOAD_TESTS | ||
DONT_LINK | ||
) | ||
|
||
# Load more extensions in your builds by adding them here. E.g.: | ||
# duckdb_extension_load(json) | ||
# Any extra extensions | ||
# e.g.: duckdb_extension_load(json) |
This file was deleted.
Oops, something went wrong.