Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[lwlog] Added new library #43047

Open
wants to merge 21 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 19 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions ports/lwlog/portfile.cmake
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
set(VCPKG_BUILD_TYPE release)
set(VCPKG_POLICY_MISMATCHED_NUMBER_OF_BINARIES enabled)
ChristianPanov marked this conversation as resolved.
Show resolved Hide resolved

vcpkg_check_linkage(ONLY_STATIC_LIBRARY)

vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO ChristianPanov/lwlog
REF "v${VERSION}"
SHA512 439ebc237eb7b26d073d29f012c40538beb8a9ca925feb2f85e2b8a6a984402623880288c5e7d6d4a897998ec32ad2180d52e3eae00526522dc206f7c8e469d4
ChristianPanov marked this conversation as resolved.
Show resolved Hide resolved
ChristianPanov marked this conversation as resolved.
Show resolved Hide resolved
HEAD_REF master
)

vcpkg_cmake_configure(SOURCE_PATH ${SOURCE_PATH})

vcpkg_cmake_install()

vcpkg_cmake_config_fixup(PACKAGE_NAME lwlog_lib CONFIG_PATH lib/cmake)

vcpkg_install_copyright(FILE_LIST "${SOURCE_PATH}/LICENSE")
17 changes: 17 additions & 0 deletions ports/lwlog/vcpkg.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"name": "lwlog",
"version": "1.3.0",
"description": "Very fast synchronous and asynchronous C++17 logging library",
"homepage": "https://github.com/ChristianPanov/lwlog",
"license": "MIT",
"dependencies": [
{
"name": "vcpkg-cmake",
"host": true
},
{
"name": "vcpkg-cmake-config",
"host": true
}
]
}
4 changes: 4 additions & 0 deletions versions/baseline.json
Original file line number Diff line number Diff line change
Expand Up @@ -5708,6 +5708,10 @@
"baseline": "1.18.10",
"port-version": 1
},
"lwlog": {
"baseline": "1.3.0",
"port-version": 0
},
"lz4": {
"baseline": "1.10.0",
"port-version": 0
Expand Down
9 changes: 9 additions & 0 deletions versions/l-/lwlog.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"versions": [
{
"git-tree": "03bafbae9158d058b2c5d7cd5eb13ca28b8f30da",
"version": "1.3.0",
"port-version": 0
}
]
}
Loading