-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
detect port count instead of hardcode
- Loading branch information
Javier Matos
authored and
Javier Matos
committed
Jul 16, 2024
1 parent
a2541b6
commit 7fc27b6
Showing
6 changed files
with
154 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,117 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<html lang="en"> | ||
<head> | ||
<script src="https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.6.0.min.js"></script> | ||
<script src="dist/common.js"></script> | ||
<script src="dist/localization.js"></script> | ||
<title>vcpkg - Open source C/C++ dependency manager from Microsoft</title> | ||
<meta name="description" content="vcpkg product homepage for C and C++ developers. Download, build, and manage C and C++ libraries for all platforms, buildsystems, and workflows."> | ||
<meta name="keywords" content="vcpkg, C, C++, cpp, Microsoft, library, libraries, package manager, library manager"> | ||
<!-- Bing Webmaster Tools integration --> | ||
<meta name="viewport" content="width=device-width"> | ||
<meta name="msvalidate.01" content="5704D9CB14CCA7C4612DC0FE14669DD1" /> | ||
|
||
<!-- our style sheet and fonts --> | ||
<link href="/css/index.css" rel="stylesheet" /> | ||
|
||
|
||
|
||
<!-- our scripts --> | ||
<script src="/dist/index.js"></script> | ||
</head> | ||
<body></body> | ||
<body> | ||
<div id="cookie-banner"></div> | ||
<div id="loadNavBar"></div> | ||
<div class="margin-box"> | ||
<div tabindex="-1" role="main" id="main"> | ||
<div class="header-block"> | ||
<img | ||
class="logo-design-first-upper" | ||
src="/assets/mark/mark-left.svg" | ||
alt="vcpkg logo" | ||
title="vcpkg logo" | ||
/> | ||
<div class="header-text-block"> | ||
<div class="vcpkg-name"><h1>vcpkg</h1></div> | ||
<div class="vcpkg-description"> | ||
C/C++ dependency manager from Microsoft | ||
<p><span>For all platforms, buildsystems, and workflows</span></p> | ||
</div> | ||
|
||
<a role="button" class="btn-lg vcpkg-btn-left text-nowrap" href="getting-started" | ||
>Get started</a | ||
> | ||
|
||
<a role="button" class="btn-lg vcpkg-btn-right text-nowrap" href="packages" | ||
>Browse Packages</a | ||
> | ||
</div> | ||
<div style="position: relative"> | ||
<div class="vcpkg-center-block"> | ||
<div class="vcpkg-center-heading"><h2>About vcpkg</h2></div> | ||
<div class="vcpkg-center-description"> | ||
vcpkg is a free C/C++ package manager for acquiring and managing libraries. | ||
Choose from 2451 open source libraries to download and build in a single step or add | ||
your own private libraries to simplify your build process. Maintained by the Microsoft | ||
C++ team and open source contributors. | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div style="position: relative"> | ||
<img | ||
class="logo-design-second-upper" | ||
src="/assets/mark/logo-right.svg" | ||
alt="vcpkg logo" | ||
title="vcpkg logo" | ||
/> | ||
</div> | ||
</div> | ||
<div class="questions"> | ||
<p class="questions2"><h3>Simplicity and flexibility are central to vcpkg.</h3></p> | ||
</div> | ||
<div class="why-us-box-shadow"> | ||
<div class="why-us-flexbox"> | ||
<div class="why-us-group"> | ||
<img class="why-us-icon" src="/assets/mark/easy.svg" alt="easy icon" /> | ||
<div class="why-us-heading">Easy To Use</div> | ||
<p class="why-us-description"> | ||
Download and build popular libraries in a single step. | ||
Never worry about upstream dependencies or version conflicts. | ||
Declare dependencies with commandline actions or in a manifest that can live with your repo. | ||
Get support from the development team, documentation, and an active community. | ||
</p> | ||
</div> | ||
<div class="why-us-group"> | ||
<img class="why-us-icon" src="/assets/mark/reliable.svg" alt="Universal" /> | ||
<div class="why-us-heading">Universal</div> | ||
<p class="why-us-description"> | ||
vcpkg works with your preferred OS, | ||
buildsystem, target architectures, IDE, editor, and continuous integration | ||
process. Libraries are built from source and can be configured. | ||
</p> | ||
</div> | ||
<div class="why-us-group"> | ||
<img class="why-us-icon" src="/assets/mark/secure.svg" alt="Reliable" /> | ||
<div class="why-us-heading">Reliable</div> | ||
<p class="why-us-description"> | ||
Maintain consistency between local developer and CI/CD workflows. | ||
Stay on your preferred library versions. Sync your dependency ecosystem with the rest of your team. | ||
</p> | ||
</div> | ||
<div class="why-us-group"> | ||
<img class="why-us-icon" src="/assets/mark/open.svg" alt="For Everyone" /> | ||
<div class="why-us-heading">For Everyone</div> | ||
<p class="why-us-description"> | ||
Whether you are a one-person team on a small open source project or a large | ||
enterprise with complex build and security needs, take advantage of the latest | ||
vcpkg features for your workflow. Cache binaries for faster consumption, | ||
avoid diamond dependency resolution issues, reproduce identical builds for all developers, | ||
CI machines, and containers. Bring your own libraries or consume popular public ones. | ||
Take advantage of existing Visual Studio and Visual Studio Code integration. | ||
</p> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
<div id="loadFooter"></div> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters