How to run and compile a cairo file in ubuntu

烈酒焚心 提交于 2019-12-11 03:21:23

问题


I wanted to use cairo library for c++ graphics. I included the libraries using

sudo apt-get install libcairo2-dev

and further I installed GLX-Dock(Cairo Dock with OpenGL) using Ubuntu open software center and used the code in http://cairographics.org/FAQ/ and compiled with command

g++ trial.cpp 

but it gives me the following error

fatal error: cairo.h: No such file or directory
compilation terminated.

How should i compile and run the file?

Moreover can someone recommend easy to learn graphics library with more features. I tried using OpenGL but found it difficult to understand.


回答1:


Read the FAQ again: http://cairographics.org/FAQ/#compilation_flags

This will get you started:

g++ test.c \`pkg-config --libs --cflags cairo\` -o test

Run it with:

./test



回答2:


I hope this Solution Works

sudo apt-get install libcairo2-dev

And then:

sudo npm install processing -g


来源:https://stackoverflow.com/questions/11918274/how-to-run-and-compile-a-cairo-file-in-ubuntu

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!