vcpkg/ports/easyloggingpp/vcpkg.json
bjornthirud 721328e357
[easyloggingpp] Features to support multithreading (#31396)
* ports/easyloggingpp features to support multi-threaded applications

* New version of ports/easyloggingpp

---------

Co-authored-by: Bjørn Thirud <bjorn.thirud@fotoware.com>
2023-05-13 12:32:59 -07:00

29 lines
798 B
JSON

{
"name": "easyloggingpp",
"version": "9.97.0",
"port-version": 3,
"description": "Easylogging++ is a single header efficient logging library for C++ applications.",
"homepage": "https://github.com/amrayn/easyloggingpp",
"dependencies": [
{
"name": "vcpkg-cmake",
"host": true
},
{
"name": "vcpkg-cmake-config",
"host": true
}
],
"features": {
"no-defaultfile": {
"description": "Do not write to default log file \"myeasylog.log\" (compile with ELPP_NO_DEFAULT_LOG_FILE)"
},
"std-locking": {
"description": "Use std::mutex for thread synchronization (compile with ELPP_FORCE_USE_STD_THREAD)"
},
"thread-safe": {
"description": "Make easyloggingpp thread safe (compile with ELPP_THREAD_SAFE)"
}
}
}