mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-10-30 21:00:05 +00:00
Add re2 dependency
This commit is contained in:
parent
949c983a01
commit
ad87fc77fe
3 changed files with 4 additions and 0 deletions
|
|
@ -35,6 +35,7 @@ Supercell Wx uses code from the following dependencies:
|
||||||
| [nunicode](https://bitbucket.org/alekseyt/nunicode/src/master/) | [MIT License](https://spdx.org/licenses/MIT.html) | Modified for MapLibre Native |
|
| [nunicode](https://bitbucket.org/alekseyt/nunicode/src/master/) | [MIT License](https://spdx.org/licenses/MIT.html) | Modified for MapLibre Native |
|
||||||
| [OpenSSL](https://www.openssl.org/) | [OpenSSL License](https://spdx.org/licenses/OpenSSL.html) |
|
| [OpenSSL](https://www.openssl.org/) | [OpenSSL License](https://spdx.org/licenses/OpenSSL.html) |
|
||||||
| [Qt](https://www.qt.io/) | [GNU Lesser General Public License v3.0 only](https://spdx.org/licenses/LGPL-3.0-only.html) | Qt Core, Qt GUI, Qt Multimedia, Qt Network, Qt OpenGL, Qt Positioning, Qt SQL, Qt SVG, Qt Widgets<br/>Additional Licenses: https://doc.qt.io/qt-6/licenses-used-in-qt.html |
|
| [Qt](https://www.qt.io/) | [GNU Lesser General Public License v3.0 only](https://spdx.org/licenses/LGPL-3.0-only.html) | Qt Core, Qt GUI, Qt Multimedia, Qt Network, Qt OpenGL, Qt Positioning, Qt SQL, Qt SVG, Qt Widgets<br/>Additional Licenses: https://doc.qt.io/qt-6/licenses-used-in-qt.html |
|
||||||
|
| [re2](https://github.com/google/re2) | [BSD 3-Clause "New" or "Revised" License](https://spdx.org/licenses/BSD-3-Clause.html) |
|
||||||
| [spdlog](https://github.com/gabime/spdlog) | [MIT License](https://spdx.org/licenses/MIT.html) |
|
| [spdlog](https://github.com/gabime/spdlog) | [MIT License](https://spdx.org/licenses/MIT.html) |
|
||||||
| [SQLite](https://www.sqlite.org/) | Public Domain |
|
| [SQLite](https://www.sqlite.org/) | Public Domain |
|
||||||
| [stb](https://github.com/nothings/stb) | Public Domain |
|
| [stb](https://github.com/nothings/stb) | Public Domain |
|
||||||
|
|
|
||||||
|
|
@ -13,6 +13,7 @@ class SupercellWxConan(ConanFile):
|
||||||
"libcurl/8.4.0",
|
"libcurl/8.4.0",
|
||||||
"libxml2/2.12.2",
|
"libxml2/2.12.2",
|
||||||
"openssl/3.2.0",
|
"openssl/3.2.0",
|
||||||
|
"re2/20231101",
|
||||||
"spdlog/1.12.0",
|
"spdlog/1.12.0",
|
||||||
"sqlite3/3.44.2",
|
"sqlite3/3.44.2",
|
||||||
"vulkan-loader/1.3.243.0",
|
"vulkan-loader/1.3.243.0",
|
||||||
|
|
|
||||||
|
|
@ -5,6 +5,7 @@ project(scwx-data)
|
||||||
find_package(Boost)
|
find_package(Boost)
|
||||||
find_package(cpr)
|
find_package(cpr)
|
||||||
find_package(LibXml2)
|
find_package(LibXml2)
|
||||||
|
find_package(re2)
|
||||||
find_package(spdlog)
|
find_package(spdlog)
|
||||||
|
|
||||||
if (NOT MSVC)
|
if (NOT MSVC)
|
||||||
|
|
@ -268,6 +269,7 @@ target_link_libraries(wxdata PUBLIC aws-cpp-sdk-core
|
||||||
aws-cpp-sdk-s3
|
aws-cpp-sdk-s3
|
||||||
cpr::cpr
|
cpr::cpr
|
||||||
LibXml2::LibXml2
|
LibXml2::LibXml2
|
||||||
|
re2::re2
|
||||||
spdlog::spdlog
|
spdlog::spdlog
|
||||||
units::units)
|
units::units)
|
||||||
target_link_libraries(wxdata INTERFACE Boost::iostreams
|
target_link_libraries(wxdata INTERFACE Boost::iostreams
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue