当库路径包含空格时,它无法找到该路径。所以我用引号来包裹路径。路径找到了,但是在目录中找不到库。
例如:
Debug_Library_Path=-L"../Externals/TextLibrary/libs/with space/gccDebug/"
Release_Library_Path=-L"../Externals/TextLibrary/libs/with space/gccRelease/"
Debug_Libraries=-Wl,--start-group -lTextLibrary -Wl,--end-group
Release_Libraries=-Wl,--start-group -lTextLibrary -Wl,--end-group
提示:找不到“-lTextLibrary”
有谁知道可能导致此问题的原因?