diff --git a/docs/examples/vcpkg.md b/docs/examples/vcpkg.md index 9ebb048..a76aa26 100644 --- a/docs/examples/vcpkg.md +++ b/docs/examples/vcpkg.md @@ -19,7 +19,7 @@ description = "Dependencies from vcpkg" # See https://github.com/microsoft/vcpkg/releases for vcpkg versions # See https://vcpkg.io/en/packages.html for available packages [vcpkg] -version = "2021.05.12" +version = "2022.11.14" packages = ["fmt"] [find-package] diff --git a/tests/conditions/src/win32.cpp b/tests/conditions/src/windows_specific.cpp similarity index 100% rename from tests/conditions/src/win32.cpp rename to tests/conditions/src/windows_specific.cpp diff --git a/tests/interface/src/main.cpp b/tests/interface/src/main.cpp index 9d8c418..d181c04 100644 --- a/tests/interface/src/main.cpp +++ b/tests/interface/src/main.cpp @@ -4,5 +4,5 @@ int main() { - printf("mylib version: %s\n", mylib::version()) -} \ No newline at end of file + printf("mylib version: %s\n", mylib::version()); +} diff --git a/tests/vcpkg/cmake.toml b/tests/vcpkg/cmake.toml index 9207dbf..66a34f3 100644 --- a/tests/vcpkg/cmake.toml +++ b/tests/vcpkg/cmake.toml @@ -7,7 +7,7 @@ description = "Dependencies from vcpkg" # See https://github.com/microsoft/vcpkg/releases for vcpkg versions # See https://vcpkg.io/en/packages.html for available packages [vcpkg] -version = "2021.05.12" +version = "2022.11.14" packages = ["fmt"] [find-package]