我应该在我的项目中包含一个.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
很难看到它很方便。我怎样才能缩短它?我试着把它分成两行:
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
那么,有没有办法将路径更改为多行或只是缩小它?
答案 0 :(得分: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"