0

我应该在我的项目中包含一个 .dll 文件,该文件位于“deep”目录中,因此语句如下所示:

LIBS += D:\\boost_1_51_0\\bin.v2\\libs\\boost-mingw\\libs\\regex\\build\\gcc-mingw-4.7.2\\debug\\libboost_regex-mgw47-d-1_51.dll

太长了,不方便看。我怎样才能缩短它?我试着把它分成两行:

LIBS += D:\\boost_1_51_0\\bin.v2\\libs\\boost-mingw\\libs
\\regex\\build\\gcc-mingw-4.7.2\\debug\\libboost_regex-mgw47-d-1_51.dll

但是,这不会编译。这是错误消息:

error: \regex\build\gcc-mingw-4.7.2\debug\libboost_regex-mgw47-d-1_51.dll: No such file or directory

那么,有没有办法将路径更改为几行或只是缩小它?

4

1 回答 1

1

你应该写:

LIBS += "D:/boost_1_51_0/bin.v2/libs/boost-mingw/libs/regex/build/ \
         gcc-mingw-4.7.2/debug/libboost_regex-mgw47-d-1_51.dll"
于 2013-03-25T12:35:33.513 回答