Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve vcpkg configuration #2630

Open
wants to merge 5 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 2 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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -58,3 +58,4 @@ _build*
# pytest
__pycache__
venv/
vcpkg_installed
21 changes: 0 additions & 21 deletions src/ports/sirius-solver/portfile.cmake

This file was deleted.

16 changes: 0 additions & 16 deletions src/ports/sirius-solver/vcpkg.json

This file was deleted.

25 changes: 25 additions & 0 deletions src/vcpkg-configuration.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"overlay-triplets": [
"./triplets"
],
"default-registry": {
"kind": "git",
"baseline": "b322364f06308bdd24823f9d8f03fe0cc86fd46f",
"repository": "https://github.com/microsoft/vcpkg"
},
"registries": [
{
"kind": "artifact",
"location": "https://github.com/microsoft/vcpkg-ce-catalog/archive/refs/heads/main.zip",
"name": "microsoft"
},
JasonMarechal25 marked this conversation as resolved.
Show resolved Hide resolved
{
"kind": "git",
"repository": "https://github.com/AntaresSimulatorTeam/antares-vcpkg-registry",
"baseline": "3fa279503f88d764778bcaacdacd3aa27e323025",
"packages": [
"sirius-solver"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please use antares-integration-v1.7 (currently v1.5) on that registry

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I've updated the registry with sirius 1.7

]
}
]
}
9 changes: 0 additions & 9 deletions src/vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,6 @@
{
"name": "antares-simulator",
"version-string": "9.2.0",
"builtin-baseline": "b322364f06308bdd24823f9d8f03fe0cc86fd46f",
"vcpkg-configuration": {
"overlay-ports": [
"./ports"
],
"overlay-triplets": [
"./triplets"
]
},
"dependencies": [
{
"name": "sirius-solver",
Expand Down
Loading