On 13-02-08 11:31 AM, Johnny Rosenberg wrote: > I'm not very familiar with creating projects with dedicated IDEs, so > far I only use a simple text editor and I want to keep it that way for > a while, if possible.
If you've installed libflac-dev you should be able to compile the example code against the system library. What's missing from that directory as the build files, which you probably don't want to use because they depend on building the flac library itself. >From the command line, try something like: cc -g -o example main.c -lFLAC -lm Which will compile a debug version of main.c, link it to the system libflac and libm, and create an executable called 'example'. Good luck with your programming efforts, -r _______________________________________________ flac-dev mailing list flac-dev@xiph.org http://lists.xiph.org/mailman/listinfo/flac-dev