发布时间:2013-05-14 11:54:43
g++ `Magick++-config --cxxflags --cppflags` -O2 -Wall -o magick++ magick++.cpp `Magick++-config --ldflags --libs` compile options .........【阅读全文】
发布时间:2013-04-27 15:33:00
No, you can't call one constructor from another in C++03 (called a delegating constructor).This changed in C++11 (aka C++0x), which added support for the following syntax:(example taken from Wikipedia)class SomeType { int number; public: SomeType(int newNumber) : number(newNumber) {} S.........【阅读全文】
发布时间:2013-04-27 15:08:36
Unresolved IdentifierIf the source of the .cpp file looks like thisClick with the right mouse button on your project.Check C/C++ Code As...Run Reparse Project.If that is not enough.Go to Project PropertiesFill in the Include input field as described.........【阅读全文】
发布时间:2013-04-09 14:14:27
转自:http://laoyin.blog.51cto.com/4885213/9179671.到libpng的官网上download自己相应的平台libpng的库.然后解压。2.查看makefile文件的内容。创建一个文件夹 查看makefile文件里面编译成库必须包含的文件copy到该文件里面在这里我文件名取名为png。以下是libpng1510的makefile文件中比较全的说了包含所有编译li.........【阅读全文】
发布时间:2013-02-28 14:13:34
第一次在google play上发布了apk,后来更新,签名找不到,对不上了,更新不了。google play上unpublish了也不能传同package name的应用,所以会很烦。keytool -genkey -v -keystore my-release-key.keystore -alias alias_name -keyalg RSA -keysize 2048 -validity 10000生成keystore,保存好,一定要记住pa.........【阅读全文】