File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -147,6 +147,12 @@ if(CASS_BUILD_STATIC)
147147 endif ()
148148 CassConfigureStatic("CASS" )
149149
150+ # Set pkg_config required libraries
151+ set (PC_REQUIRED_LIBS "libuv" )
152+ if (CASS_USE_OPENSSL)
153+ set (PC_REQUIRED_LIBS "${PC_REQUIRED_LIBS} openssl" )
154+ endif ()
155+
150156 # Update the test flags to indicate the use of the static library
151157 if (CASS_USE_STATIC_LIBS)
152158 set (TEST_CXX_FLAGS "${TEST_CXX_FLAGS} -DCASS_STATIC" )
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ includedir=@includedir@
66Name: cassandra
77Description: A C/C++ client driver for Apache Cassandra
88Version: @version@
9- Requires: libuv
9+ Requires: @PC_REQUIRED_LIBS@
1010Libs: -L${libdir} -l@PROJECT_LIB_NAME_STATIC@ -lstdc++
1111Cflags:
1212URL: https://github.com/datastax/cpp-driver/
You can’t perform that action at this time.
0 commit comments