vcpkg.cmd 0.2.2 → 0.2.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,35 @@
1
+ name: On Push
2
+ on:
3
+ push:
4
+ branches:
5
+ - main
6
+ - master
7
+ tags:
8
+ - '!*' # Do not execute on tags
9
+ env:
10
+ NAME: ${{vars.NAME}}
11
+ EMAIL: ${{vars.EMAIL}}
12
+ NPM_TOKEN: ${{secrets.NPM_TOKEN}}
13
+ GITHUB_TOKEN: ${{secrets.GH_TOKEN}}
14
+ FORCE_COLOR: 1
15
+
16
+
17
+ jobs:
18
+ publish:
19
+ name: Publish linux/windows packages
20
+ runs-on: ubuntu-latest
21
+ steps:
22
+ - uses: actions/checkout@v6
23
+ - uses: actions/setup-node@v6
24
+ with:
25
+ node-version: 24.x
26
+ - uses: nodef/npm-config.action@v1.2.0
27
+ with:
28
+ credentials: auto
29
+ entries: access=public
30
+ env:
31
+ GITHUB_TOKEN: ${{env.GITHUB_TOKEN}}
32
+ NPM_TOKEN: ${{env.NPM_TOKEN}}
33
+ - run: node build.js publish
34
+ env:
35
+ NODE_AUTH_TOKEN: ${{env.NPM_TOKEN}}
package/LICENSE CHANGED
@@ -1,21 +1,21 @@
1
- MIT License
2
-
3
- Copyright (c) 2025 Subhajit Sahu
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
1
+ MIT License
2
+
3
+ Copyright (c) 2025-26 Subhajit Sahu
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md CHANGED
@@ -1,165 +1,161 @@
1
- <!--
2
- This document is a copy of the README file on the Microsoft/vcpkg-docs repository.
3
-
4
- To make changes modify this file instead:
5
- https://github.com/microsoft/vcpkg-docs/blob/main/vcpkg/readme/vcpkg-README.md
6
- -->
7
-
8
- [🌐 Read in a different language](https://learn.microsoft.com/locale/?target=https%3A%2F%2Flearn.microsoft.com%2Fvcpkg%2F)
9
-
10
- # vcpkg overview
11
-
12
- vcpkg is a free and open-source C/C++ package manager maintained by Microsoft
13
- and the C++ community.
14
-
15
- Initially launched in 2016 as a tool for assisting developers in migrating their
16
- projects to newer versions of Visual Studio, vcpkg has evolved into a
17
- cross-platform tool used by developers on Windows, macOS, and Linux. vcpkg has a
18
- large collection of open-source libraries and enterprise-ready features designed to
19
- facilitate your development process with support for any build and project
20
- systems. vcpkg is a C++ tool at heart and is written in C++ with scripts in
21
- CMake. It is designed from the ground up to address the unique pain points C/C++
22
- developers experience.
23
-
24
- This tool and ecosystem are constantly evolving, and we always appreciate
25
- contributions! Learn how to start contributing with our [packaging
26
- tutorial](https://learn.microsoft.com/vcpkg/get_started/get-started-adding-to-registry) and [maintainer
27
- guide](https://learn.microsoft.com/vcpkg/contributing/maintainer-guide).
28
-
29
- # Get started
30
-
31
- First, follow one of our quick start guides.
32
-
33
- Whether you're using CMake, MSBuild, or any other build system, vcpkg has you covered:
34
-
35
- * [vcpkg with CMake](https://learn.microsoft.com/vcpkg/get_started/get-started)
36
- * [vcpkg with MSBuild](https://learn.microsoft.com/vcpkg/get_started/get-started-msbuild)
37
- * [vcpkg with other build systems](https://learn.microsoft.com/vcpkg/users/buildsystems/manual-integration)
38
-
39
- You can also use any editor:
40
-
41
- * [vcpkg with Visual Studio](https://learn.microsoft.com/vcpkg/get_started/get-started-vs)
42
- * [vcpkg with Visual Studio Code](https://learn.microsoft.com/vcpkg/get_started/get-started-vscode)
43
- * [vcpkg with
44
- CLion](<https://www.jetbrains.com/help/clion/package-management.html>)
45
- * [vcpkg with Qt Creator](<https://doc.qt.io/qtcreator/creator-vcpkg.html>)
46
-
47
- If a library you need is not present in the vcpkg registry, [open an issue on
48
- the GitHub repository][contributing:submit-issue] or [contribute the package
49
- yourself](https://learn.microsoft.com/vcpkg/get_started/get-started-adding-to-registry).
50
-
51
- After you've gotten vcpkg installed and working, you may wish to [add
52
- tab completion to your terminal](https://learn.microsoft.com/vcpkg/commands/integrate#vcpkg-autocompletion).
53
-
54
- # Installation
55
-
56
- To install vcpkg, run:
57
-
58
- ```bash
59
- npm i -g vcpkg.sh # On Linux / macOS
60
- npm i -g vcpkg.cmd # On Windows
61
- ```
62
-
63
- This installs the vcpkg command globally using npm, with telemetry disabled by default.
64
-
65
- # Use vcpkg
66
-
67
- Create a [manifest for your project's dependencies](https://learn.microsoft.com/vcpkg/consume/manifest-mode):
68
-
69
- ```Console
70
- vcpkg new --application
71
- vcpkg add port fmt
72
- ```
73
-
74
- Or [install packages through the command line](https://learn.microsoft.com/vcpkg/consume/classic-mode):
75
-
76
- ```Console
77
- vcpkg install fmt
78
- ```
79
-
80
- Then use one of our available integrations for
81
- [CMake](https://learn.microsoft.com/vcpkg/concepts/build-system-integration#cmake-integration),
82
- [MSBuild](https://learn.microsoft.com/vcpkg/concepts/build-system-integration#msbuild-integration) or
83
- [other build
84
- systems](https://learn.microsoft.com/vcpkg/concepts/build-system-integration#manual-integration).
85
-
86
- For a short description of all available commands, run `vcpkg help`.
87
- Run `vcpkg help [topic]` for details on a specific topic.
88
-
89
- # Key features
90
-
91
- vcpkg offers powerful features for your package management needs:
92
-
93
- * [easily integrate with your build system](https://learn.microsoft.com/vcpkg/concepts/build-system-integration)
94
- * [control the versions of your dependencies](https://learn.microsoft.com/vcpkg/users/versioning)
95
- * [package and publish your own packages](https://learn.microsoft.com/vcpkg/concepts/registries)
96
- * [reuse your binary artifacts](https://learn.microsoft.com/vcpkg/users/binarycaching)
97
- * [enable offline scenarios with asset caching](https://learn.microsoft.com/vcpkg/concepts/asset-caching)
98
-
99
- # Contribute
100
-
101
- vcpkg is an open source project, and is thus built with your contributions. Here
102
- are some ways you can contribute:
103
-
104
- * [Submit issues][contributing:submit-issue] in vcpkg or existing packages
105
- * [Submit fixes and new packages][contributing:submit-pr]
106
-
107
- Please refer to our [mantainer guide](https://learn.microsoft.com/vcpkg/contributing/maintainer-guide) and
108
- [packaging tutorial](https://learn.microsoft.com/vcpkg/get_started/get-started-packaging) for more details.
109
-
110
- This project has adopted the [Microsoft Open Source Code of
111
- Conduct][contributing:coc]. For more information see the [Code of Conduct
112
- FAQ][contributing:coc-faq] or email
113
- [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional
114
- questions or comments.
115
-
116
- [contributing:submit-issue]: https://github.com/microsoft/vcpkg/issues/new/choose
117
- [contributing:submit-pr]: https://github.com/microsoft/vcpkg/pulls
118
- [contributing:coc]: https://opensource.microsoft.com/codeofconduct/
119
- [contributing:coc-faq]: https://opensource.microsoft.com/codeofconduct/
120
-
121
- # Resources
122
-
123
- * Ports: [Microsoft/vcpkg](<https://github.com/microsoft/vcpkg>)
124
- * Source code: [Microsoft/vcpkg-tool](<https://github.com/microsoft/vcpkg-tool>)
125
- * Docs: [Microsoft Learn | vcpkg](https://learn.microsoft.com/vcpkg)
126
- * Website: [vcpkg.io](<https://vcpkg.io>)
127
- * Email: [vcpkg@microsoft.com](<mailto:vcpkg@microsoft.com>)
128
- * Discord: [\#include \<C++\>'s Discord server](<https://www.includecpp.org>), in the #🌏vcpkg channel
129
- * Slack: [C++ Alliance's Slack server](<https://cppalliance.org/slack/>), in the #vcpkg channel
130
-
131
- # License
132
-
133
- The code in this repository is licensed under the MIT License. The libraries
134
- provided by ports are licensed under the terms of their original authors. Where
135
- available, vcpkg places the associated license(s) in the location
136
- [`installed/<triplet>/share/<port>/copyright`](https://learn.microsoft.com/vcpkg/contributing/maintainer-guide#install-copyright-file).
137
-
138
- # Security
139
-
140
- Most ports in vcpkg build the libraries in question using the original build
141
- system preferred by the original developers of those libraries, and download
142
- source code and build tools from their official distribution locations. For use
143
- behind a firewall, the specific access needed will depend on which ports are
144
- being installed. If you must install it in an "air gapped" environment, consider
145
- instaling once in a non-"air gapped" environment, populating an [asset
146
- cache](https://learn.microsoft.com/vcpkg/users/assetcaching) shared with the otherwise "air gapped"
147
- environment.
148
-
149
- # Telemetry
150
-
151
- vcpkg collects usage data in order to help us improve your experience. The data
152
- collected by Microsoft is anonymous. You can opt-out of telemetry by:
153
-
154
- - running the bootstrap-vcpkg script with `-disableMetrics`
155
- - passing `--disable-metrics` to vcpkg on the command line
156
- - setting the `VCPKG_DISABLE_METRICS` environment variable
157
-
158
- Read more about vcpkg telemetry at [https://learn.microsoft.com/vcpkg/about/privacy](https://learn.microsoft.com/vcpkg/about/privacy).
159
-
160
- <br>
161
- <br>
162
-
163
-
164
- [![ORG](https://img.shields.io/badge/org-nodef-green?logo=Org)](https://nodef.github.io)
165
- ![](https://ga-beacon.deno.dev/G-RC63DPBH3P:SH3Eq-NoQ9mwgYeHWxu7cw/github.com/nodef/vcpkg.sh)
1
+ This package allows you to install [vcpkg](https://github.com/microsoft/vcpkg) on your system using **npm**. It is a *wrapper* around the official vcpkg installation scripts, and it *disables telemetry* by default.
2
+
3
+ ```bash
4
+ npm i -g vcpkg.sh # Install on Linux / macOS
5
+ npm i -g vcpkg.cmd # Install on Windows
6
+ ```
7
+
8
+ <!--
9
+ This document is a copy of the README file on the Microsoft/vcpkg-docs repository.
10
+
11
+ To make changes modify this file instead:
12
+ https://github.com/microsoft/vcpkg-docs/blob/main/vcpkg/readme/vcpkg-README.md
13
+ -->
14
+
15
+ [🌐 Read in a different language](https://learn.microsoft.com/locale/?target=https%3A%2F%2Flearn.microsoft.com%2Fvcpkg%2F)
16
+
17
+ # vcpkg overview
18
+
19
+ vcpkg is a free and open-source C/C++ package manager maintained by Microsoft
20
+ and the C++ community.
21
+
22
+ Initially launched in 2016 as a tool for assisting developers in migrating their
23
+ projects to newer versions of Visual Studio, vcpkg has evolved into a
24
+ cross-platform tool used by developers on Windows, macOS, and Linux. vcpkg has a
25
+ large collection of open-source libraries and enterprise-ready features designed to
26
+ facilitate your development process with support for any build and project
27
+ systems. vcpkg is a C++ tool at heart and is written in C++ with scripts in
28
+ CMake. It is designed from the ground up to address the unique pain points C/C++
29
+ developers experience.
30
+
31
+ This tool and ecosystem are constantly evolving, and we always appreciate
32
+ contributions! Learn how to start contributing with our [packaging
33
+ tutorial](https://learn.microsoft.com/vcpkg/get_started/get-started-adding-to-registry) and [maintainer
34
+ guide](https://learn.microsoft.com/vcpkg/contributing/maintainer-guide).
35
+
36
+ # Get started
37
+
38
+ First, follow one of our quick start guides.
39
+
40
+ Whether you're using CMake, MSBuild, or any other build system, vcpkg has you covered:
41
+
42
+ * [vcpkg with CMake](https://learn.microsoft.com/vcpkg/get_started/get-started)
43
+ * [vcpkg with MSBuild](https://learn.microsoft.com/vcpkg/get_started/get-started-msbuild)
44
+ * [vcpkg with other build systems](https://learn.microsoft.com/vcpkg/users/buildsystems/manual-integration)
45
+
46
+ You can also use any editor:
47
+
48
+ * [vcpkg with Visual Studio](https://learn.microsoft.com/vcpkg/get_started/get-started-vs)
49
+ * [vcpkg with Visual Studio Code](https://learn.microsoft.com/vcpkg/get_started/get-started-vscode)
50
+ * [vcpkg with
51
+ CLion](<https://www.jetbrains.com/help/clion/package-management.html>)
52
+ * [vcpkg with Qt Creator](<https://doc.qt.io/qtcreator/creator-vcpkg.html>)
53
+
54
+ If a library you need is not present in the vcpkg registry, [open an issue on
55
+ the GitHub repository][contributing:submit-issue] or [contribute the package
56
+ yourself](https://learn.microsoft.com/vcpkg/get_started/get-started-adding-to-registry).
57
+
58
+ After you've gotten vcpkg installed and working, you may wish to [add
59
+ tab completion to your terminal](https://learn.microsoft.com/vcpkg/commands/integrate#vcpkg-autocompletion).
60
+
61
+ # Use vcpkg
62
+
63
+ Create a [manifest for your project's dependencies](https://learn.microsoft.com/vcpkg/consume/manifest-mode):
64
+
65
+ ```Console
66
+ vcpkg new --application
67
+ vcpkg add port fmt
68
+ ```
69
+
70
+ Or [install packages through the command line](https://learn.microsoft.com/vcpkg/consume/classic-mode):
71
+
72
+ ```Console
73
+ vcpkg install fmt
74
+ ```
75
+
76
+ Then use one of our available integrations for
77
+ [CMake](https://learn.microsoft.com/vcpkg/concepts/build-system-integration#cmake-integration),
78
+ [MSBuild](https://learn.microsoft.com/vcpkg/concepts/build-system-integration#msbuild-integration) or
79
+ [other build
80
+ systems](https://learn.microsoft.com/vcpkg/concepts/build-system-integration#manual-integration).
81
+
82
+ For a short description of all available commands, run `vcpkg help`.
83
+ Run `vcpkg help [topic]` for details on a specific topic.
84
+
85
+ # Key features
86
+
87
+ vcpkg offers powerful features for your package management needs:
88
+
89
+ * [easily integrate with your build system](https://learn.microsoft.com/vcpkg/concepts/build-system-integration)
90
+ * [control the versions of your dependencies](https://learn.microsoft.com/vcpkg/users/versioning)
91
+ * [package and publish your own packages](https://learn.microsoft.com/vcpkg/concepts/registries)
92
+ * [reuse your binary artifacts](https://learn.microsoft.com/vcpkg/users/binarycaching)
93
+ * [enable offline scenarios with asset caching](https://learn.microsoft.com/vcpkg/concepts/asset-caching)
94
+
95
+ # Contribute
96
+
97
+ vcpkg is an open source project, and is thus built with your contributions. Here
98
+ are some ways you can contribute:
99
+
100
+ * [Submit issues][contributing:submit-issue] in vcpkg or existing packages
101
+ * [Submit fixes and new packages][contributing:submit-pr]
102
+
103
+ Please refer to our [mantainer guide](https://learn.microsoft.com/vcpkg/contributing/maintainer-guide) and
104
+ [packaging tutorial](https://learn.microsoft.com/vcpkg/get_started/get-started-packaging) for more details.
105
+
106
+ This project has adopted the [Microsoft Open Source Code of
107
+ Conduct][contributing:coc]. For more information see the [Code of Conduct
108
+ FAQ][contributing:coc-faq] or email
109
+ [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional
110
+ questions or comments.
111
+
112
+ [contributing:submit-issue]: https://github.com/microsoft/vcpkg/issues/new/choose
113
+ [contributing:submit-pr]: https://github.com/microsoft/vcpkg/pulls
114
+ [contributing:coc]: https://opensource.microsoft.com/codeofconduct/
115
+ [contributing:coc-faq]: https://opensource.microsoft.com/codeofconduct/
116
+
117
+ # Resources
118
+
119
+ * Ports: [Microsoft/vcpkg](<https://github.com/microsoft/vcpkg>)
120
+ * Source code: [Microsoft/vcpkg-tool](<https://github.com/microsoft/vcpkg-tool>)
121
+ * Docs: [Microsoft Learn | vcpkg](https://learn.microsoft.com/vcpkg)
122
+ * Website: [vcpkg.io](<https://vcpkg.io>)
123
+ * Email: [vcpkg@microsoft.com](<mailto:vcpkg@microsoft.com>)
124
+ * Discord: [\#include \<C++\>'s Discord server](<https://www.includecpp.org>), in the #🌏vcpkg channel
125
+ * Slack: [C++ Alliance's Slack server](<https://cppalliance.org/slack/>), in the #vcpkg channel
126
+
127
+ # License
128
+
129
+ The code in this repository is licensed under the MIT License. The libraries
130
+ provided by ports are licensed under the terms of their original authors. Where
131
+ available, vcpkg places the associated license(s) in the location
132
+ [`installed/<triplet>/share/<port>/copyright`](https://learn.microsoft.com/vcpkg/contributing/maintainer-guide#install-copyright-file).
133
+
134
+ # Security
135
+
136
+ Most ports in vcpkg build the libraries in question using the original build
137
+ system preferred by the original developers of those libraries, and download
138
+ source code and build tools from their official distribution locations. For use
139
+ behind a firewall, the specific access needed will depend on which ports are
140
+ being installed. If you must install it in an "air gapped" environment, consider
141
+ instaling once in a non-"air gapped" environment, populating an [asset
142
+ cache](https://learn.microsoft.com/vcpkg/users/assetcaching) shared with the otherwise "air gapped"
143
+ environment.
144
+
145
+ # Telemetry
146
+
147
+ vcpkg collects usage data in order to help us improve your experience. The data
148
+ collected by Microsoft is anonymous. You can opt-out of telemetry by:
149
+
150
+ - running the bootstrap-vcpkg script with `-disableMetrics`
151
+ - passing `--disable-metrics` to vcpkg on the command line
152
+ - setting the `VCPKG_DISABLE_METRICS` environment variable
153
+
154
+ Read more about vcpkg telemetry at [https://learn.microsoft.com/vcpkg/about/privacy](https://learn.microsoft.com/vcpkg/about/privacy).
155
+
156
+ <br>
157
+ <br>
158
+
159
+
160
+ [![ORG](https://img.shields.io/badge/org-nodef-green?logo=Org)](https://nodef.github.io)
161
+ ![](https://ga-beacon.deno.dev/G-RC63DPBH3P:SH3Eq-NoQ9mwgYeHWxu7cw/github.com/nodef/vcpkg.sh)
package/install.cmd CHANGED
@@ -1,36 +1,36 @@
1
- @echo off
2
- @setlocal enabledelayedexpansion
3
- set "REPO=https://github.com/Microsoft/vcpkg"
4
- set "TEMP_DIR=temp"
5
-
6
-
7
- :: We want to download vcpkg in the current directory
8
- :: 1. Download the repo to a temp folder
9
- git --version >nul 2>&1
10
- if "%errorlevel%" neq "0" (
11
- echo Git is not installed. Please install Git and ensure it is in your PATH.
12
- exit /b 1
13
- )
14
- git clone --depth 1 "%REPO%" "%TEMP_DIR%"
15
- del /f "vcpkg.exe" >nul 2>&1
16
- :: 2. Move the contents of the temp folder to the current directory
17
- robocopy /? >nul 2>&1
18
- if "%errorlevel%"=="0" (
19
- robocopy "%TEMP_DIR%" . /e /move /nfl /ndl /njh /njs /np /nc /ns /xd "%TEMP_DIR%\.git"
20
- )
21
- else (
22
- for /d %%D in ("%TEMP_DIR%\*") do (
23
- if /i not "%%~nxD"==".git" move "%%D" .
24
- )
25
- for %%F in ("%TEMP_DIR%\*") do (
26
- if /i not "%%~nxF"==".git" move "%%F" .
27
- )
28
- )
29
- if exist "%TEMP_DIR%\" (
30
- rmdir /i /q "%TEMP_DIR%"
31
- )
32
-
33
-
34
- :: Now, lets install vcpkg
35
- bootstrap-vcpkg -disableMetrics
36
- vcpkg integrate install
1
+ @echo off
2
+ @setlocal enabledelayedexpansion
3
+ set "REPO=https://github.com/Microsoft/vcpkg"
4
+ set "TEMP_DIR=temp"
5
+
6
+
7
+ :: We want to download vcpkg in the current directory
8
+ :: 1. Download the repo to a temp folder
9
+ git --version >nul 2>&1
10
+ if "%errorlevel%" neq "0" (
11
+ echo Git is not installed. Please install Git and ensure it is in your PATH.
12
+ exit /b 1
13
+ )
14
+ git clone --depth 1 "%REPO%" "%TEMP_DIR%"
15
+ del /f "vcpkg.exe" >nul 2>&1
16
+ :: 2. Move the contents of the temp folder to the current directory
17
+ robocopy /? >nul 2>&1
18
+ if "%errorlevel%"=="0" (
19
+ robocopy "%TEMP_DIR%" . /e /move /nfl /ndl /njh /njs /np /nc /ns /xd "%TEMP_DIR%\.git"
20
+ )
21
+ else (
22
+ for /d %%D in ("%TEMP_DIR%\*") do (
23
+ if /i not "%%~nxD"==".git" move "%%D" .
24
+ )
25
+ for %%F in ("%TEMP_DIR%\*") do (
26
+ if /i not "%%~nxF"==".git" move "%%F" .
27
+ )
28
+ )
29
+ if exist "%TEMP_DIR%\" (
30
+ rmdir /i /q "%TEMP_DIR%"
31
+ )
32
+
33
+
34
+ :: Now, lets install vcpkg
35
+ bootstrap-vcpkg -disableMetrics
36
+ vcpkg integrate install
package/package.json CHANGED
@@ -1,35 +1,35 @@
1
- {
2
- "name": "vcpkg.cmd",
3
- "version": "0.2.2",
4
- "description": "C++ Library Manager for Windows, Linux, and MacOS; Microsoft (2016).",
5
- "main": "vcpkg.exe",
6
- "bin": {
7
- "vcpkg": "vcpkg.exe"
8
- },
9
- "scripts": {
10
- "install": "install.cmd",
11
- "test": "exit"
12
- },
13
- "keywords": [
14
- "c",
15
- "windows",
16
- "package-manager",
17
- "visual-studio",
18
- "cmake",
19
- "packages",
20
- "cplusplus",
21
- "cpp",
22
- "libraries",
23
- "vcpkg"
24
- ],
25
- "license": "MIT",
26
- "author": "wolfram77@gmail.com",
27
- "repository": {
28
- "type": "git",
29
- "url": "git+https://github.com/nodef/vcpkg.sh.git"
30
- },
31
- "homepage": "https://github.com/nodef/vcpkg.sh#readme",
32
- "bugs": {
33
- "url": "https://github.com/nodef/vcpkg.sh/issues"
34
- }
35
- }
1
+ {
2
+ "name": "vcpkg.cmd",
3
+ "version": "0.2.3",
4
+ "description": "C++ Library Manager for Windows, Linux, and MacOS; Microsoft (2016).",
5
+ "main": "vcpkg.exe",
6
+ "bin": {
7
+ "vcpkg": "vcpkg.exe"
8
+ },
9
+ "scripts": {
10
+ "install": "install.cmd",
11
+ "test": "exit"
12
+ },
13
+ "keywords": [
14
+ "c",
15
+ "windows",
16
+ "package-manager",
17
+ "visual-studio",
18
+ "cmake",
19
+ "packages",
20
+ "cplusplus",
21
+ "cpp",
22
+ "libraries",
23
+ "vcpkg"
24
+ ],
25
+ "license": "MIT",
26
+ "author": "wolfram77@gmail.com",
27
+ "repository": {
28
+ "type": "git",
29
+ "url": "git+https://github.com/nodef/vcpkg.sh.git"
30
+ },
31
+ "homepage": "https://github.com/nodef/vcpkg.sh#readme",
32
+ "bugs": {
33
+ "url": "https://github.com/nodef/vcpkg.sh/issues"
34
+ }
35
+ }
package/vcpkg.exe CHANGED
@@ -1 +1 @@
1
- DELETE ME
1
+ DELETE ME