/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
所有第三方库编译的时候,需要注意自己项目的runtimelib是用的mt, 还是md,
第三方库也要统一,避免出现error LNK2005重定义错误。
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
zlib1.2.5
http://www.cppblog.com/fwxjj/archive/2010/09/26/127733.html
zlib1.2.3 有工程文件,使用方便。
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
sqlITE:自己新建项目,用源码编译。
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
libcurl:
源码中有工程文件,直接编译。
libcurl+openssl:
http://hi.baidu.com/%CC%BF%D6%ED/blog/item/03af5904dce2e97003088149.html
openssl debug版本:编译选项加 -Zi,链接选项加上 -debug
libcurl工程中添加openssl的头文件和库,添加宏BUILDING_LIBCURL;USE_SSLEAY;USE_OPENSSL
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
到MysqL官网下载MysqL connector/c++的msi版本,
然后完全安装,默认目录是c:/program file/MysqL.
1.1.0版本需要boost库
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
google buffer:
源码中有工程文件,直接编译
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
boost_1_49_0:
解压后运行bootstrap,编译bjam
在visual studio命令行boost目录中里输入
bjam --with-system --with-regex --with-date_time --with-thread --with-serialization --toolset=msvc-9.0
这里使用的vc2008,其他版本请自行调整
使用时,包含boost_1_44_0\目录,lib在boost_1_44_0\stage\lib即可
libboost_date_time-vc90-mt-1_49.lib---release
libboost_date_time-vc90-mt-gd-1_49.lib--debug
如果用mt版本,则runtime-link=static
转自:http://www.cppblog.com/sunicdavy/archive/2010/09/26/127743.html
http://blog.csdn.net/tadican/article/details/4273004
--build-dir=<builddir> | 编译的临时文件会放在builddir里(这样比较好管理,编译完就可以把它删除了) |
--stagedir=<stagedir> | 存放编译后库文件的路径,默认是stage |
--build-type=complete | 编译所有版本,不然只会编译一小部分版本(确切地说是相当于:variant=release,threading=multi;link=shared|static;runtime-link=shared) |
variant=debug|release | 决定编译什么版本(Debug or Release?) |
link=static|shared | 决定使用静态库还是动态库。 |
threading=single|multi | 决定使用单线程还是多线程库。 |
runtime-link=static|shared | 决定是静态还是动态链接C/C++标准库。 |
--with-<library> | 只编译指定的库,如输入--with-regex就只编译regex库了。 |
--show-libraries | 显示需要编译的库名称 |
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
boost_1_52_0的编译安装
文档: http://www.boost.org/doc/libs/1_52_0/more/getting_started/windows.html
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
原文链接:https://www.f2er.com/sqlite/202032.html