{"id":18499393,"url":"https://github.com/michaeltryby/vcpkg-boost-example","last_synced_at":"2026-03-19T04:47:08.918Z","repository":{"id":57954280,"uuid":"526733876","full_name":"michaeltryby/vcpkg-boost-example","owner":"michaeltryby","description":"Use vcpkg to mange boost dependencies","archived":false,"fork":false,"pushed_at":"2025-08-19T03:01:08.000Z","size":32,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-19T05:26:16.238Z","etag":null,"topics":["boost","example","vcpkg"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/michaeltryby.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-08-19T19:49:11.000Z","updated_at":"2025-08-19T03:01:12.000Z","dependencies_parsed_at":"2024-11-06T13:48:10.072Z","dependency_job_id":"8dd9d7e5-79a2-4b07-aff1-2064773e6ee3","html_url":"https://github.com/michaeltryby/vcpkg-boost-example","commit_stats":{"total_commits":52,"total_committers":1,"mean_commits":52.0,"dds":0.0,"last_synced_commit":"d0b2fec106eef2ec96c5d2a728fd5ddc8f5c544c"},"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/michaeltryby/vcpkg-boost-example","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/michaeltryby%2Fvcpkg-boost-example","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/michaeltryby%2Fvcpkg-boost-example/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/michaeltryby%2Fvcpkg-boost-example/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/michaeltryby%2Fvcpkg-boost-example/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/michaeltryby","download_url":"https://codeload.github.com/michaeltryby/vcpkg-boost-example/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/michaeltryby%2Fvcpkg-boost-example/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28742973,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-25T02:46:29.005Z","status":"ssl_error","status_checked_at":"2026-01-25T02:44:29.968Z","response_time":113,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["boost","example","vcpkg"],"created_at":"2024-11-06T13:45:48.686Z","updated_at":"2026-01-25T03:01:15.203Z","avatar_url":"https://github.com/michaeltryby.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# vcpkg boost example\n\nMinimal example that uses vcpkg to manage boost dependencies.\n\n## Manifest Mode\n\n1. Install and bootstrap vcpkg\n```\n\\\u003e cd first-test\n\\\u003e git clone https://github.com/Microsoft/vcpkg.git\n\\\u003e .\\vcpkg\\bootstrap-vcpkg.bat\n```\n\n2. Build and run project\n```\n\\\u003e cd build\n\\\u003e cmake .. -DCMAKE_TOOLCHAIN_FILE=\u003cproject path\u003e\\vcpkg\\scripts\\buildsystems\\vcpkg.cmake\n\\\u003e cmake --build .\n\\\u003e test\\Debug\\first_test.exe\n```\n\n\n## Classic Mode\n\n1. Install and bootstrap vcpkg\n```\n\\\u003e cd first-test\n\\\u003e erase vcpkg.json\n\\\u003e git clone https://github.com/Microsoft/vcpkg.git\n\\\u003e .\\vcpkg\\bootstrap-vcpkg.bat\n```\n\n2. Install dependencies\n```\n\\\u003e cd vcpkg\n\\\u003e vcpkg install boost-test:x64-windows\n```\n\n3. Build and run project\n```\n\\\u003e cd ..\\build\n\\\u003e cmake .. -DCMAKE_TOOLCHAIN_FILE=\u003cproject path\u003e\\vcpkg\\scripts\\buildsystems\\vcpkg.cmake\n\\\u003e cmake --build .\n\\\u003e test\\Debug\\first_test.exe\n```\n\n## Binary Caching\n\n0. vcpkg and boost-test installed (classic mode)\n\n1. Export dependencies to package\n```\n\\\u003e vcpkg export boost-test:x64-windows --nuget\n```\n\n2. Setup local package store\n```\n\\\u003e vcpkg fetch nuget\n\\\u003e nuget add \u003cpackage name\u003e.\u003cversion\u003e.nuget -Source \u003cabs store path\u003e\\local-store\n```\n\n3. Install dependencies from package\n```\n\\\u003e nuget install \u003cpackage name\u003e -Source \u003cabs store path\u003e\\local-store\n```\n\n4. Build and run project (Note change in toolchain path)\n```\n\\\u003e cd ..\\build\n\\\u003e cmake .. -DCMAKE_TOOLCHAIN_FILE=\u003cproject path\u003e\\vcpkg\\\u003cpackage name\u003e\\scripts\\buildsystems\\vcpkg.cmake\n\\\u003e cmake --build .\n\\\u003e test\\Debug\\first_test.exe\n```\n\n## GitHub Packages\nsee Actions workflow\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmichaeltryby%2Fvcpkg-boost-example","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmichaeltryby%2Fvcpkg-boost-example","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmichaeltryby%2Fvcpkg-boost-example/lists"}