Qmake 获取父目录

Qmake get parent directory

我尝试获取 PWD 的父目录。 我试试../$$PWD。这是行不通的。 最初的任务是获取父子目录的地址,但到目前为止我什至不能降级目录。

TEMPLATE = app
Parent_path = $$PWD //here i get smt like C:/Myproject/project(here is my project.pro), but i need only C:/Myproject

将您的代码更改为

Parent_path = $$PWD/../

因为 .. 很难 link 到父目录。然后你可以像这样使用你的 Parent_path 变量

message($$Parent_path)