mirror of
https://github.com/google/googletest.git
synced 2025-04-04 21:15:03 +00:00
pkg-config: fix gtest.pc/gmock.pc library names for the debug build
In case CMAKE_BUILD_TYPE is set to Debug the gtest library is name libgtestd.a but the link command returned from gtest.pc is '-lgtest' (without the debug d) and so the linking of dependent packages fails (see [1] for a buildroot failure example). Enhance the gtest.pc ang gmock.pc generation to honour the debug 'd'. [1] http://lists.busybox.net/pipermail/buildroot/2021-October/626382.html Signed-off-by: Peter Seiderer <ps.report@gmx.net>
This commit is contained in:
parent
16f637fbf4
commit
cf5a317715
3 changed files with 5 additions and 2 deletions
|
@ -6,5 +6,5 @@ Description: GoogleMock (without main() function)
|
|||
Version: @PROJECT_VERSION@
|
||||
URL: https://github.com/google/googletest
|
||||
Requires: gtest = @PROJECT_VERSION@
|
||||
Libs: -L${libdir} -lgmock @CMAKE_THREAD_LIBS_INIT@
|
||||
Libs: -L${libdir} -lgmock@DEBUG_POSTFIX@ @CMAKE_THREAD_LIBS_INIT@
|
||||
Cflags: -I${includedir} @GTEST_HAS_PTHREAD_MACRO@
|
||||
|
|
|
@ -5,5 +5,5 @@ Name: gtest
|
|||
Description: GoogleTest (without main() function)
|
||||
Version: @PROJECT_VERSION@
|
||||
URL: https://github.com/google/googletest
|
||||
Libs: -L${libdir} -lgtest @CMAKE_THREAD_LIBS_INIT@
|
||||
Libs: -L${libdir} -lgtest@DEBUG_POSTFIX@ @CMAKE_THREAD_LIBS_INIT@
|
||||
Cflags: -I${includedir} @GTEST_HAS_PTHREAD_MACRO@
|
||||
|
|
|
@ -335,6 +335,9 @@ function(install_project)
|
|||
# Configure and install pkgconfig files.
|
||||
foreach(t ${ARGN})
|
||||
set(configured_pc "${generated_dir}/${t}.pc")
|
||||
if(CMAKE_BUILD_TYPE MATCHES Debug)
|
||||
set(DEBUG_POSTFIX "d")
|
||||
endif()
|
||||
configure_file("${PROJECT_SOURCE_DIR}/cmake/${t}.pc.in"
|
||||
"${configured_pc}" @ONLY)
|
||||
install(FILES "${configured_pc}"
|
||||
|
|
Loading…
Add table
Reference in a new issue