aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/cmakeprojectmanager/cmakebuildtarget.h
diff options
context:
space:
mode:
authorhjk <hjk@qt.io>2019-05-28 13:49:26 +0200
committerhjk <hjk@qt.io>2019-05-28 12:23:26 +0000
commit473a741c9fcf09febba312464fab8385e2351181 (patch)
tree2d328a090993cb5c5fd34b43e9468bcbf7e4d4d0 /src/plugins/cmakeprojectmanager/cmakebuildtarget.h
parent4704f49fbb1201ebf10ab9dbaed0275ff25faba8 (diff)
Utils: Rename FileName to FilePath
More in line with QFileInfo terminonlogy which appears to be best-of-breed within Qt. Change-Id: I1d051ff1c8363ebd4ee56376451df45216c4c9ab Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
Diffstat (limited to 'src/plugins/cmakeprojectmanager/cmakebuildtarget.h')
-rw-r--r--src/plugins/cmakeprojectmanager/cmakebuildtarget.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/plugins/cmakeprojectmanager/cmakebuildtarget.h b/src/plugins/cmakeprojectmanager/cmakebuildtarget.h
index a22bb804c10..e46394bef56 100644
--- a/src/plugins/cmakeprojectmanager/cmakebuildtarget.h
+++ b/src/plugins/cmakeprojectmanager/cmakebuildtarget.h
@@ -46,17 +46,17 @@ class CMAKE_EXPORT CMakeBuildTarget
{
public:
QString title;
- Utils::FileName executable; // TODO: rename to output?
+ Utils::FilePath executable; // TODO: rename to output?
TargetType targetType = UtilityType;
- Utils::FileName workingDirectory;
- Utils::FileName sourceDirectory;
- Utils::FileName makeCommand;
+ Utils::FilePath workingDirectory;
+ Utils::FilePath sourceDirectory;
+ Utils::FilePath makeCommand;
// code model
- QList<Utils::FileName> includeFiles;
+ QList<Utils::FilePath> includeFiles;
QStringList compilerOptions;
ProjectExplorer::Macros macros;
- QList<Utils::FileName> files;
+ QList<Utils::FilePath> files;
};
} // namespace CMakeProjectManager