forked from videolan/vlc
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
pkg-config support to libvlc-control
Signed-off-by: Rémi Denis-Courmont <[email protected]>
- Loading branch information
Rémi Denis-Courmont
committed
Mar 2, 2008
1 parent
132bf65
commit f8c4e77
Showing
3 changed files
with
24 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,7 @@ | |
*.mak | ||
*.moc.cpp | ||
*.o | ||
*.pc | ||
*.vlt | ||
.deps | ||
.libs | ||
|
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,11 @@ | ||
prefix=@prefix@ | ||
exec_prefix=@exec_prefix@ | ||
libdir=@libdir@ | ||
includedir=@includedir@ | ||
|
||
Name: LibVLC control API | ||
Description: VLC media player external control library | ||
Version: @VERSION@ | ||
Cflags: -I${includedir} | ||
Libs: -L${libdir} -lvlc-control | ||
Libs.private: -lvlc |