mirror of
				https://github.com/catchorg/Catch2.git
				synced 2025-10-31 20:27:11 +01:00 
			
		
		
		
	Add vcpkg installation instructions (#1898)
* Add vcpkg installation instructions * Add index
This commit is contained in:
		 Phoebe
					Phoebe
				
			
				
					committed by
					
						 Martin Hořeňovský
						Martin Hořeňovský
					
				
			
			
				
	
			
			
			 Martin Hořeňovský
						Martin Hořeňovský
					
				
			
						parent
						
							f34aacfe5f
						
					
				
				
					commit
					46cc551b7a
				
			| @@ -6,6 +6,7 @@ | ||||
| [Automatic test registration](#automatic-test-registration)<br> | ||||
| [CMake project options](#cmake-project-options)<br> | ||||
| [Installing Catch2 from git repository](#installing-catch2-from-git-repository)<br> | ||||
| [Installing Catch2 from vcpkg](#installing-catch2-from-vcpkg)<br> | ||||
|  | ||||
| Because we use CMake to build Catch2, we also provide a couple of | ||||
| integration points for our users. | ||||
| @@ -220,6 +221,19 @@ when configuring the build, and then modify your calls to | ||||
| [find_package](https://cmake.org/cmake/help/latest/command/find_package.html) | ||||
| accordingly. | ||||
|  | ||||
| ## Installing Catch2 from vcpkg | ||||
|  | ||||
| Alternatively, you can build and install Catch2 using [vcpkg](https://github.com/microsoft/vcpkg/) dependency manager: | ||||
| ``` | ||||
| git clone https://github.com/Microsoft/vcpkg.git | ||||
| cd vcpkg | ||||
| ./bootstrap-vcpkg.sh | ||||
| ./vcpkg integrate install | ||||
| ./vcpkg install catch2 | ||||
| ``` | ||||
|  | ||||
| The catch2 port in vcpkg is kept up to date by microsoft team members and community contributors. | ||||
| If the version is out of date, please [create an issue or pull request](https://github.com/Microsoft/vcpkg) on the vcpkg repository. | ||||
|  | ||||
| --- | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user