Skip to content

Commit

Permalink
Update to opencv 4.10.0 (#132)
Browse files Browse the repository at this point in the history
* update to opencv 4.10.0

to fix window build on github runners

* bump version number to 0.19.0
  • Loading branch information
krupkat committed Jun 10, 2024
1 parent 25ffab8 commit a8075ac
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ permissions:
env:
BUILD_TYPE: Release
SDL_VERSION: "release-2.30.3"
OPENCV_VERSION: "4.9.0"
OPENCV_VERSION: "4.10.0"
CATCH_VERSION: "v3.6.0"
SPDLOG_VERSION: "v1.14.1"
EXIV2_VERSION: "v0.28.2"
Expand Down
2 changes: 1 addition & 1 deletion misc/build/build-bullseye.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export BUILD_TYPE='Release'
export SDL_VERSION='release-2.30.3'
# export OPENCV_VERSION='4.9.0'
# export OPENCV_VERSION='4.10.0'
export CATCH_VERSION='v3.6.0'
export SPDLOG_VERSION='v1.14.1'
export EXIV2_VERSION='v0.28.2'
Expand Down
2 changes: 1 addition & 1 deletion misc/build/build-macos.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

export BUILD_TYPE='Release'
export SDL_VERSION='release-2.30.3'
export OPENCV_VERSION='4.9.0'
export OPENCV_VERSION='4.10.0'
export CATCH_VERSION='v3.6.0'
export SPDLOG_VERSION='v1.14.1'
export EXIV2_VERSION='v0.28.2'
Expand Down
2 changes: 1 addition & 1 deletion misc/build/build-ubuntu-20.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

export BUILD_TYPE='Release'
export SDL_VERSION='release-2.30.3'
export OPENCV_VERSION='4.9.0'
export OPENCV_VERSION='4.10.0'
export CATCH_VERSION='v3.6.0'
export SPDLOG_VERSION='v1.14.1'
export EXIV2_VERSION='v0.28.2'
Expand Down
2 changes: 1 addition & 1 deletion misc/build/build-ubuntu-22.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

export BUILD_TYPE='Release'
export SDL_VERSION='release-2.30.3'
export OPENCV_VERSION='4.9.0'
export OPENCV_VERSION='4.10.0'
export CATCH_VERSION='v3.6.0'
export SPDLOG_VERSION='v1.14.1'
export EXIV2_VERSION='v0.28.2'
Expand Down
2 changes: 1 addition & 1 deletion misc/build/build-universal.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export BUILD_TYPE='Release'
export SDL_VERSION='release-2.30.3'
export OPENCV_VERSION='4.9.0'
export OPENCV_VERSION='4.10.0'
export CATCH_VERSION='v3.6.0'
export SPDLOG_VERSION='v1.14.1'
export EXIV2_VERSION='v0.28.2'
Expand Down
2 changes: 1 addition & 1 deletion misc/build/build-windows-latest.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

$env:BUILD_TYPE = 'Release'
$env:SDL_VERSION = 'release-2.30.3'
$env:OPENCV_VERSION = '4.9.0'
$env:OPENCV_VERSION = '4.10.0'
$env:CATCH_VERSION = 'v3.6.0'
$env:SPDLOG_VERSION = 'v1.14.1'
$env:EXIV2_VERSION = 'v0.28.2'
Expand Down
4 changes: 2 additions & 2 deletions xpano/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
namespace xpano::version {

constexpr int kMajor = 0;
constexpr int kMinor = 18;
constexpr int kPatch = 1;
constexpr int kMinor = 19;
constexpr int kPatch = 0;

using Triplet = std::tuple<int, int, int>;

Expand Down

0 comments on commit a8075ac

Please sign in to comment.