Skip to content
Merged
Show file tree
Hide file tree
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
3 changes: 2 additions & 1 deletion .copier-answers.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
# Changes here will be overwritten by Copier
_commit: b2a4844
_commit: da2acba
_src_path: https://github.com/python-project-templates/base.git
add_docs: true
add_extension: cpp
add_vcpkg: true
add_wiki: true
email: 3105306+timkpaine@users.noreply.github.com
github: python-project-templates
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@ jobs:

- uses: actions-ext/cpp/setup@51c484ef64088c62434226039d0e3359f5fc8df6

- uses: actions-ext/cpp/setup-vcpkg-cache@6ded4958b7e13d73428138a01d53c33cb941121d

- name: Install dependencies
run: make develop

Expand Down
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ __pycache__/
*.exp
*.lib

# vcpkg
vcpkg/
vcpkg_installed/

# Rust
target
target-capi
Expand Down
5 changes: 5 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,11 @@ packages = [
"cpp",
]

[tool.hatch.build.targets.sdist.force-include]
"vcpkg.json" = "vcpkg.json"
"vcpkg-overlays" = "vcpkg-overlays"


[tool.hatch.build.targets.wheel]
packages = [
"python_template_cpp",
Expand Down
1 change: 1 addition & 0 deletions vcpkg-overlays/.gitkeep
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

8 changes: 8 additions & 0 deletions vcpkg.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"dependencies": [],
"configuration": {
"overlay-ports": [
"vcpkg-overlays"
]
}
}
Loading