forked from qt-creator/qt-creator
don't deploy static libraries build using cmake
Change-Id: I00f0fb2474620f86ca4d50a2e47c8ee4bf69239b Reviewed-by: Daniel Teske <daniel.teske@theqtcompany.com>
This commit is contained in:
committed by
Daniel Teske
parent
ec176b4bf4
commit
4a0df73b53
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user