3

我正在尝试从源代码(在 Windows 7 上)制作 MySQL Connector/C++ 1.1.1 的发布版本,以便我可以在 Visual Studio 2010 的 Win32 项目中使用它(仅限 mysqlcppconn.dll 文件)。我遵循以下说明:

http://dev.mysql.com/doc/refman/5.1/en/connector-cpp-installation-source-windows.html

但是当我尝试执行命令cmake -G "Visual Studio 10"时,我收到一条错误消息,提示找不到 Boost 或其某些库。错误是:

C:\CMake 2.8\bin>cmake -G "Visual Studio 10"
CMake Warning (dev) in CMakeLists.txt:
A logical block opening on the line

C:/CMake 2.8/bin/CMakeLists.txt:39 (if)

closes on the line

C:/CMake 2.8/bin/CMakeLists.txt:41 (endif)

with mis-matching arguments.
This warning is for project developers.  Use -Wno-dev to suppress it.

-- Environment compile flags:
-- Environment link flags:
-- Could NOT find Boost
-- Could NOT find Boost
CMake Error at CMakeLists.txt:120 (MESSAGE):
Boost or some of its libraries found.  If not in standard place please set
-DBOOST_ROOT:STRING=

-- Configuring incomplete, errors occurred!

首先,我尝试将文件夹 boost_1_49_0 复制到与 CMake 相同的目录(C:\CMake 2.8\bin),但这导致了同样的错误。然后我尝试使用命令 *cmake -DBOOST_ROOT:STRING=\boost_1_49_0* 将 -DBOOST_ROOT:STRING= 变量设置为消息指示的变量,但这也不起作用。

所以我的问题是:如何将变量设置为正确的值,以便可以找到 Boost 库?(我在变量名称上搜索了谷歌,但没有找到结果)?

4

1 回答 1

2

解决它!我已将 CMakeList 文件中的 BOOST_ROOT 变量更改为正确的路径,然后它终于起作用了。

于 2012-11-09T18:23:10.820 回答