summaryrefslogtreecommitdiff
path: root/other/pkgconfig/toxcore.pc.in
diff options
context:
space:
mode:
authoriphydf <iphydf@users.noreply.github.com>2016-08-15 22:07:49 +0100
committeriphydf <iphydf@users.noreply.github.com>2016-08-16 17:36:18 +0100
commitcebf64a588039c202880659a85d070126bcc68da (patch)
treee3271760a0060ab8cb3868eb548e599615fdd15a /other/pkgconfig/toxcore.pc.in
parente43bde37eac9dc235619ee4c696796292e3e5256 (diff)
Split toxcore into layers.
This allows us to more clearly define interfaces between modules, and have the linker help us ensure that module boundaries are respected. The onion/tcp/net_crypto layer is a bit too large. This is due to a cyclic dependency (onion -> net_crypto -> TCP -> onion). We may or may not want to break that cycle in the future to allow the onion library to exist on its own without net_crypto.
Diffstat (limited to 'other/pkgconfig/toxcore.pc.in')
-rw-r--r--other/pkgconfig/toxcore.pc.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/other/pkgconfig/toxcore.pc.in b/other/pkgconfig/toxcore.pc.in
index 09556494..c77cb5be 100644
--- a/other/pkgconfig/toxcore.pc.in
+++ b/other/pkgconfig/toxcore.pc.in
@@ -6,5 +6,5 @@ Name: toxcore
6Description: Tox protocol library 6Description: Tox protocol library
7Requires: libsodium 7Requires: libsodium
8Version: @PROJECT_VERSION@ 8Version: @PROJECT_VERSION@
9Libs: -L${libdir} -ltoxcore @toxcore_PKGCONFIG_LIBS@ 9Libs: -L${libdir} @toxcore_PKGCONFIG_LIBS@ -ltoxcrypto -ltoxnetwork -ltoxdht -ltoxnetcrypto -ltoxfriends -ltoxmessenger -ltoxgroup -ltoxcore
10Cflags: -I${includedir} 10Cflags: -I${includedir}