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
9 changes: 5 additions & 4 deletions .github/workflows/windows-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ env:
jobs:
build-windows:
runs-on: windows-latest
permissions:
packages: write

steps:
- name: Checkout code
Expand All @@ -21,10 +23,9 @@ jobs:

- name: Setup vcpkg
uses: lukka/run-vcpkg@v11

- name: Install dependencies with vcpkg
run: |
vcpkg install opencv4:x64-windows eigen3:x64-windows glfw3:x64-windows glm:x64-windows libiconv:x64-windows
with:
vcpkgTriplet: "x64-windows"
vcpkgBinaryCaching: 'nuget,GitHub,readwrite'

- name: Configure CMake
run: |
Expand Down
13 changes: 13 additions & 0 deletions vcpkg.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"name": "theeye",
"version-string": "0.6",
"dependencies": [
"opencv4",
"eigen3",
"glfw3",
"glm",
"libiconv"
],

"builtin-baseline" : "4334d8b4c8916018600212ab4dd4bbdc343065d1"
}
Loading