CMake: Use Utils::FileName where appropriate

Change-Id: I3ab0a68920e27ebcf4e1dd58180a72ded58b892e
Reviewed-by: Tobias Hunger <tobias.hunger@qt.io>
This commit is contained in:
Tobias Hunger
2016-10-13 12:02:52 +02:00
parent 567db27e57
commit 9ff2bd16d3
9 changed files with 59 additions and 59 deletions

View File

@@ -58,17 +58,17 @@ class CMAKE_EXPORT CMakeBuildTarget
{
public:
QString title;
QString executable; // TODO: rename to output?
Utils::FileName executable; // TODO: rename to output?
TargetType targetType = UtilityType;
QString workingDirectory;
QString sourceDirectory;
QString makeCommand;
Utils::FileName workingDirectory;
Utils::FileName sourceDirectory;
Utils::FileName makeCommand;
// code model
QStringList includeFiles;
QList<Utils::FileName> includeFiles;
QStringList compilerOptions;
QByteArray defines;
QStringList files;
QList<Utils::FileName> files;
void clear();
};