Skip to content

Commit ee4f89f

Browse files
committed
chore: README
1 parent 578a481 commit ee4f89f

1 file changed

Lines changed: 16 additions & 13 deletions

File tree

README

Lines changed: 16 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ EXTERNAL DEPENDENCIES
8888
The following libraries require third-party software (header files and
8989
libraries) being installed to build properly:
9090

91-
- NetSSL_OpenSSL and Crypt require OpenSSL.
91+
- NetSSL_OpenSSL, Crypto and JWT require OpenSSL.
9292
- Data/ODBC requires ODBC
9393
(Microsoft ODBC on Windows, unixODBC or iODBC on Unix/Linux)
9494
- Data/MySQL requires the MySQL client.
@@ -175,11 +175,11 @@ package manager. It needed to be installed first(https://conan.io/downloads.html
175175

176176
You can install Poco libraries from Conan Center(https://conan.io/center.html):
177177

178-
$ conan install -r conancenter poco/1.12.0@
178+
$ conan install -r conancenter poco/1.13.3@
179179

180180
Or, you can download Poco recipe and build locally:
181181

182-
$ conan install -r conancenter poco/1.12.0@ --build=poco
182+
$ conan install -r conancenter poco/1.13.3@ --build=poco
183183

184184
The Poco recipe and packages in Conan Center are kept up to date by Conan team members and community contributors.
185185
If the version is out of date, or you detect any wrong behavior, please create an issue or pull request(https://github.com/conan-io/conan-center-index)
@@ -189,19 +189,22 @@ on the Conan Center Index repository.
189189
BUILDING ON WINDOWS
190190
===================
191191

192-
Microsoft Visual Studio 2015 or newer is required to build the POCO C++ Libraries on
193-
Windows platforms. Solution and project files for all versions from 2015 to 2022 are included.
192+
Microsoft Visual Studio 2019 or newer is required to build the POCO C++ Libraries on
193+
Windows platforms. Solution and project files for Visual Studio 2019 to 2022 are included.
194194
64-bit (x64) builds are supported as well.
195195
You can either build from within Visual Studio (Build->Batch Build->Select All;Rebuild)
196196
or from the command line. To build from the command line, start the
197-
Visual Studio Command Prompt and cd to the directory where you
198-
have extracted the POCO C++ Libraries sources. Then, simply start the buildwin.cmd script
199-
and pass as argument the version of visual studio (140, 150, 160, 170, etc.). You can customize
200-
what is being built by buildwin.cmd by passing appropriate command line arguments to
201-
it. Call buildwin.cmd without arguments to see what is available.
202-
203-
To disable certain components (e.g., NetSSL_OpenSSL or Data/MySQL) from the build,
204-
edit the file named "components" and remove the respective lines.
197+
Developer PowerShell for Visual Studio and cd to the directory where you
198+
have extracted the POCO C++ Libraries sources. Then, run the buildwin.ps1 script
199+
and pass the desired options.
200+
201+
To show available options, run:
202+
203+
> buildwin.ps1 -help
204+
205+
Example:
206+
207+
> buildwin.ps1 -vs 170 -action build -linkmode shared -config release -platform x64 -samples -tests
205208

206209
Certain libraries, like NetSSL_OpenSSL, Crypto or Data/MySQL have dependencies
207210
to other libraries. Since the build script does not know where to find the necessary

0 commit comments

Comments
 (0)