Skip to content

Commit

Permalink
Generate pkg-config file during install builds
Browse files Browse the repository at this point in the history
This commit causes CMake to generate a pkg-config file when ENABLE_GLSLANG_INSTALL is enabled. This allows software projects that use pkg-config (and not CMake) to find external dependencies (e.g., Godot 4.x), to find and properly link to a pre-built glslang package.

Closes #1715.
  • Loading branch information
jasonliu-- committed Oct 21, 2023
1 parent 7fa0731 commit 178bfcf
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -370,4 +370,35 @@ if(ENABLE_GLSLANG_INSTALL)
DESTINATION
"${CMAKE_INSTALL_LIBDIR}/cmake/${PROJECT_NAME}"
)

# Generate a pkg-config file, so that software projects which use
# pkg-config to locate dependencies can find glslang

# This template is filled-in by CMake's `configure_file(... @ONLY)`.
# The `@...@` are substituted by CMake's configure_file(), either
# from variables set in CMakeLists.txt or by CMake itself.
# (Based on: https://www.scivision.dev/cmake-generate-pkg-config/)
file(WRITE "${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME}.pc.in" [=[
prefix="@CMAKE_INSTALL_PREFIX@"
exec_prefix="${prefix}"
libdir="${prefix}/lib"
includedir="${prefix}/include"

Name: @PROJECT_NAME@
Description: official reference compiler front end for the OpenGL ES and OpenGL shading languages
Version: @PROJECT_VERSION@
Cflags: -I"${includedir}"
Libs: -L"${libdir}" -l@PROJECT_NAME@
]=])
configure_file(
"${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME}.pc.in"
"${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME}.pc"
@ONLY
)
install(
FILES
"${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME}.pc"
DESTINATION
"${CMAKE_INSTALL_LIBDIR}/pkgconfig"
)
endif()

0 comments on commit 178bfcf

Please sign in to comment.