forked from joshtriplett/metadeps
-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add helpers aggregating settings from all libraries
Fix #28
- Loading branch information
Showing
5 changed files
with
115 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
prefix=/usr | ||
exec_prefix=${prefix} | ||
libdir=${exec_prefix}/lib/ | ||
libdir2=${exec_prefix}/lib64/ | ||
includedir=${prefix}/include/testlib | ||
includedir2=${prefix}/include/testanotherlib | ||
|
||
Name: Test Another Library | ||
Description: Another fake library to test pkg-config. | ||
Version: 1.2.3 | ||
Libs: -L${libdir} -ltest -L${libdir2} -ltest2 -F${libdir} -framework someframework -F${libdir2} -framework someotherframework | ||
Cflags: -I${includedir} -I${includedir2} -DBADGER=yes -DAWESOME -DGREAT |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[package.metadata.system-deps] | ||
testlib = { version = "1" } | ||
testanotherlib = { version = "1" } |