Skip to content
This repository was archived by the owner on Jan 13, 2025. It is now read-only.

Commit c573442

Browse files
mkruskal-googlecopybara-github
authored andcommitted
Add pkg-config file declaring Abseil dependency of utf8_range
See protocolbuffers/protobuf#12439 for more information PiperOrigin-RevId: 525796488
1 parent 72c943d commit c573442

File tree

3 files changed

+25
-1
lines changed

3 files changed

+25
-1
lines changed

.github/workflows/bazel_tests.yml

+8-1
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,15 @@ jobs:
2929

3030
steps:
3131
- uses: actions/checkout@v2
32+
- name: Setup Bazel
33+
run: |
34+
echo "BAZEL=bazel" >> $GITHUB_ENV
35+
echo "USE_BAZEL_VERSION=5.1.1" >> $GITHUB_ENV
36+
- name: Setup Bazel (macOS)
37+
if: runner.os == 'macOS'
38+
run: echo "BAZEL=bazelisk" >> $GITHUB_ENV
3239
- name: Install dependencies
3340
run: sudo apt update && sudo apt install -y ${{ matrix.install }}
3441
if: matrix.install != ''
3542
- name: Run tests
36-
run: cd ${{ github.workspace }} && CC=${{ matrix.CC }} bazel test --test_output=errors ... ${{ matrix.flags }}
43+
run: cd ${{ github.workspace }} && CC=${{ matrix.CC }} ${{ env.BAZEL }} test --test_output=errors ... ${{ matrix.flags }}

CMakeLists.txt

+5
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,11 @@ if (utf8_range_ENABLE_INSTALL)
7373
install(FILES "${PROJECT_BINARY_DIR}/${PROJECT_NAME}-config.cmake"
7474
DESTINATION "${CMAKE_INSTALL_LIBDIR}/cmake/${PROJECT_NAME}"
7575
)
76+
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/cmake/utf8_range.pc.cmake
77+
${CMAKE_CURRENT_BINARY_DIR}/utf8_range.pc @ONLY)
78+
install(
79+
FILES ${CMAKE_CURRENT_BINARY_DIR}/utf8_range.pc
80+
DESTINATION "${CMAKE_INSTALL_LIBDIR}/pkgconfig")
7681

7782
# Install public headers explicitly.
7883
install(FILES utf8_range.h utf8_validity.h

cmake/utf8_range.pc.cmake

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
prefix=@CMAKE_INSTALL_PREFIX@
2+
exec_prefix=@CMAKE_INSTALL_PREFIX@
3+
libdir=@CMAKE_INSTALL_FULL_LIBDIR@
4+
includedir=@CMAKE_INSTALL_FULL_INCLUDEDIR@
5+
6+
Name: UTF8 Range
7+
Description: Google's UTF8 Library
8+
Version: 1.0
9+
Requires: absl_strings
10+
Libs: -L${libdir} -lprotobuf-lite @CMAKE_THREAD_LIBS_INIT@
11+
Cflags: -I${includedir}
12+
Conflicts: protobuf

0 commit comments

Comments
 (0)