From 1bc076fbb9c77f31ff3a346ed9c41746a1adea61 Mon Sep 17 00:00:00 2001 From: Russell Yanofsky Date: Mon, 1 Jul 2019 15:03:26 -0400 Subject: [PATCH] Fix libmultiprocess.pc install path --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index f12c26b1..697558cf 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -42,7 +42,7 @@ target_link_libraries(mpgen PRIVATE -L${capnp_LIBRARY_DIRS} capnpc) install(TARGETS mpgen EXPORT Multiprocess RUNTIME DESTINATION bin) configure_file(pkgconfig/libmultiprocess.pc.in "${CMAKE_CURRENT_BINARY_DIR}/libmultiprocess.pc" @ONLY) -install(FILES "${CMAKE_CURRENT_BINARY_DIR}/libmultiprocess.pc" DESTINATION "pkgconfig") +install(FILES "${CMAKE_CURRENT_BINARY_DIR}/libmultiprocess.pc" DESTINATION "lib/pkgconfig") install(EXPORT Multiprocess DESTINATION lib/cmake/Multiprocess)