Skip to content

Commit

Permalink
try pinning visual studio boost version to 1.76
Browse files Browse the repository at this point in the history
  • Loading branch information
NQNStudios committed May 28, 2024
1 parent 7f7b113 commit 1823fea
Show file tree
Hide file tree
Showing 3 changed files with 62 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,8 @@
},
{
name: install dependencies,
run: '.\.github\workflows\scripts\win\install-deps.bat x86'
run: 'vcpkg install',
working-directory: 'proj/vs2013'
},
{
name: build,
Expand All @@ -90,7 +91,8 @@
},
{
name: install dependencies,
run: '.\.github\workflows\scripts\win\install-deps.bat x64'
run: 'vcpkg install',
working-directory: 'proj/vs2017'
},
{
name: build,
Expand Down
29 changes: 29 additions & 0 deletions proj/vs2013/vcpkg.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"dependencies": [
"zlib",
"sfml",
"opengl",
"boost-any",
"boost-dynamic-bitset",
"boost-ptr-container",
"boost-core",
"boost-filesystem",
"boost-system",
"boost-date-time",
"boost-chrono",
"boost-math",
"boost-spirit"
],
"overrides": [
{ "name": "boost-any", "version": "1.76" },
{ "name": "boost-dynamic-bitset", "version": "1.76" },
{ "name": "boost-ptr-container", "version": "1.76" },
{ "name": "boost-core", "version": "1.76" },
{ "name": "boost-filesystem", "version": "1.76" },
{ "name": "boost-system", "version": "1.76" },
{ "name": "boost-date-time", "version": "1.76" },
{ "name": "boost-chrono", "version": "1.76" },
{ "name": "boost-math", "version": "1.76" },
{ "name": "boost-spirit", "version": "1.76" }
]
}
29 changes: 29 additions & 0 deletions proj/vs2017/vcpkg.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"dependencies": [
"zlib",
"sfml",
"opengl",
"boost-any",
"boost-dynamic-bitset",
"boost-ptr-container",
"boost-core",
"boost-filesystem",
"boost-system",
"boost-date-time",
"boost-chrono",
"boost-math",
"boost-spirit"
],
"overrides": [
{ "name": "boost-any", "version": "1.76" },
{ "name": "boost-dynamic-bitset", "version": "1.76" },
{ "name": "boost-ptr-container", "version": "1.76" },
{ "name": "boost-core", "version": "1.76" },
{ "name": "boost-filesystem", "version": "1.76" },
{ "name": "boost-system", "version": "1.76" },
{ "name": "boost-date-time", "version": "1.76" },
{ "name": "boost-chrono", "version": "1.76" },
{ "name": "boost-math", "version": "1.76" },
{ "name": "boost-spirit", "version": "1.76" }
]
}

0 comments on commit 1823fea

Please sign in to comment.