Do not expose unnecessary libraries to the program
that is linking with libwebappenc library.
If the program will not be using the symbols of the required library,
it should not be linking directly to that library.
pkg-config guide:
https://people.freedesktop.org/~dbn/pkg-config-guide.html
Change-Id: I6ad22fb8e57edf5c59216db2670520711bf66568
############################ For PC file setting ################################
SET(PC_NAME lib${PROJECT_NAME})
-SET(PC_REQUIRED ${DEPENDENTS})
SET(PC_LDFLAGS -l${PROJECT_NAME})
#SET(PC_CFLAGS -I\${includedir})
Name: @PC_NAME@
Description: Web application encryption and decryption service based on key-manager
Version: @VERSION@
-Requires: @PC_REQUIRED@
+Requires:
Libs: @PC_LDFLAGS@
Cflags: @PC_CFLAGS@