diff options
author | Volker Vogelhuber <wiendl@web.de> | 2014-11-06 11:27:24 +0100 |
---|---|---|
committer | Daniel Teske <daniel.teske@theqtcompany.com> | 2014-11-07 12:28:14 +0100 |
commit | 4a0df73b53c183c2d408084da315d7fea45fd79a (patch) | |
tree | 7d8e3ca7558e72849c7b45139fd44b9277e67f84 /src/plugins/cmakeprojectmanager/cmakeproject.h | |
parent | ec176b4bf4fff072154742723b814d881307a6c1 (diff) | |
download | qt-creator-4a0df73b53c183c2d408084da315d7fea45fd79a.tar.gz |
don't deploy static libraries build using cmake
Change-Id: I00f0fb2474620f86ca4d50a2e47c8ee4bf69239b
Reviewed-by: Daniel Teske <daniel.teske@theqtcompany.com>
Diffstat (limited to 'src/plugins/cmakeprojectmanager/cmakeproject.h')
-rw-r--r-- | src/plugins/cmakeprojectmanager/cmakeproject.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/plugins/cmakeprojectmanager/cmakeproject.h b/src/plugins/cmakeprojectmanager/cmakeproject.h index cfb3d176a7..d380a1cd37 100644 --- a/src/plugins/cmakeprojectmanager/cmakeproject.h +++ b/src/plugins/cmakeprojectmanager/cmakeproject.h @@ -61,11 +61,17 @@ namespace Internal { class CMakeFile; class CMakeBuildSettingsWidget; +enum TargetType { + ExecutableType = 0, + StaticLibraryType = 2, + DynamicLibraryType = 3 +}; + struct CMakeBuildTarget { QString title; QString executable; // TODO: rename to output? - bool library; + TargetType targetType; QString workingDirectory; QString sourceDirectory; QString makeCommand; |