From 67a15924ba0764b55e88356c955fe1bd7cc76964 Mon Sep 17 00:00:00 2001
From: Thomas White <taw@physics.org>
Date: Tue, 29 Jun 2021 16:28:54 +0200
Subject: [PATCH] Add pkg-config files for consumer and producer APIs

---
 consumer/CMakeLists.txt          |  5 +++++
 consumer/libasapo-consumer.pc.in | 11 +++++++++++
 producer/CMakeLists.txt          |  5 +++++
 producer/libasapo-producer.pc.in | 11 +++++++++++
 4 files changed, 32 insertions(+)
 create mode 100644 consumer/libasapo-consumer.pc.in
 create mode 100644 producer/libasapo-producer.pc.in

diff --git a/consumer/CMakeLists.txt b/consumer/CMakeLists.txt
index 46990069b..6553264fb 100644
--- a/consumer/CMakeLists.txt
+++ b/consumer/CMakeLists.txt
@@ -10,3 +10,8 @@ endif()
 if(BUILD_CONSUMER_TOOLS)
     add_subdirectory(tools)
 endif()
+
+include(GNUInstallDirs)
+configure_file(libasapo-consumer.pc.in libasapo-consumer.pc)
+install(FILES ${CMAKE_BINARY_DIR}/consumer/libasapo-consumer.pc
+        DESTINATION ${CMAKE_INSTALL_LIBDIR}/pkgconfig)
diff --git a/consumer/libasapo-consumer.pc.in b/consumer/libasapo-consumer.pc.in
new file mode 100644
index 000000000..a09c6f780
--- /dev/null
+++ b/consumer/libasapo-consumer.pc.in
@@ -0,0 +1,11 @@
+prefix=${CMAKE_INSTALL_PREFIX}
+exec_prefix=${CMAKE_INSTALL_PREFIX}
+libdir=${CMAKE_INSTALL_FULL_LIBDIR}
+includedir=${CMAKE_INSTALL_FULL_INCLUDEDIR}
+
+Name: libasapo-consumer
+Description: ASAP::O consumer API
+Version: ${ASAPO_CONSUMER_PROTOCOL}
+Cflags: -I${CMAKE_INSTALL_FULL_INCLUDEDIR}
+Libs: -L${CMAKE_INSTALL_FULL_LIBDIR} -lasapo-consumer -lasapo-fabric
+Libs.private: -lcurl -lstdc++ -lpthread
diff --git a/producer/CMakeLists.txt b/producer/CMakeLists.txt
index dea86005c..7f0b9114f 100644
--- a/producer/CMakeLists.txt
+++ b/producer/CMakeLists.txt
@@ -7,3 +7,8 @@ endif()
 if(BUILD_EVENT_MONITOR_PRODUCER)
     add_subdirectory(event_monitor_producer)
 endif(BUILD_EVENT_MONITOR_PRODUCER)
+
+include(GNUInstallDirs)
+configure_file(libasapo-producer.pc.in libasapo-producer.pc)
+install(FILES ${CMAKE_BINARY_DIR}/producer/libasapo-producer.pc
+        DESTINATION ${CMAKE_INSTALL_LIBDIR}/pkgconfig)
diff --git a/producer/libasapo-producer.pc.in b/producer/libasapo-producer.pc.in
new file mode 100644
index 000000000..223d907cf
--- /dev/null
+++ b/producer/libasapo-producer.pc.in
@@ -0,0 +1,11 @@
+prefix=${CMAKE_INSTALL_PREFIX}
+exec_prefix=${CMAKE_INSTALL_PREFIX}
+libdir=${CMAKE_INSTALL_FULL_LIBDIR}
+includedir=${CMAKE_INSTALL_FULL_INCLUDEDIR}
+
+Name: libasapo-producer
+Description: ASAP::O producer API
+Version: ${ASAPO_PRODUCER_PROTOCOL}
+Cflags: -I${CMAKE_INSTALL_FULL_INCLUDEDIR}
+Libs: -L${CMAKE_INSTALL_FULL_LIBDIR} -lasapo-producer -lasapo-fabric
+Libs.private: -lcurl -lstdc++ -lpthread
-- 
GitLab