Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在我的应用程序中使用 Qt。它应该是一个自解压的单个 exe 文件。因为我想使用 Qt,所以我想将 Qt 库提取到一个临时目录并在运行时添加它们。不应将它们提取到 exe 路径。
这该怎么做?
一种可能性是更改工作目录,例如cwd("newdir")或SetCurrentDirectory("newdir").
cwd("newdir")
SetCurrentDirectory("newdir")
另一个是修改你的进程 $PATH,例如putenv ("PATH", "path + newdir").
putenv ("PATH", "path + newdir")