Baumi
Baumi

Reputation: 13

Where do I find the libvlc to include it on Ubuntu?

I'm rouhgly new to Atom Editor, and I wanted to program my media player, based on vlc/libvlc, with it, but I can't include any files from libvlc. I downloaded it through the terminal with sudo apt-get install libvlc-dev, but now I can't find the files to include it.

Upvotes: 0

Views: 2850

Answers (1)

Cinder Biscuits
Cinder Biscuits

Reputation: 5261

Since you installed using apt-get, you should be able to locate the location of all the files from a particular package using apt-file.

$ apt-file list libvlc-dev

If apt-file isn't already on your system, install it.

$ sudo apt-get install apt-file

Upvotes: 1

Related Questions