diff options
author | Erik <treat@gmx.com> | 2010-04-23 16:24:55 +0200 |
---|---|---|
committer | dt <qtc-committer@nokia.com> | 2010-04-26 12:30:02 +0200 |
commit | 3ae3e3f330a934a990ee40e38a151799632f83d4 (patch) | |
tree | b6f9628df9addb23f3ae0056fea8b745ba580080 /src/plugins/cmakeprojectmanager/cmakeproject.h | |
parent | 0b5ffee800dfd3c6783ae95cec66a9f93fbfdbf6 (diff) | |
download | qt-creator-3ae3e3f330a934a990ee40e38a151799632f83d4.tar.gz |
Import library target from cmake project.
Added library flag to CMakeBuildTarget struct which is set when parsing
the cbp file. This flag is then used to make sure no runconfiguration
is created for library targets.
Merge-request: 136
Reviewed-by: dt <qtc-committer@nokia.com>
Diffstat (limited to 'src/plugins/cmakeprojectmanager/cmakeproject.h')
-rw-r--r-- | src/plugins/cmakeprojectmanager/cmakeproject.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/plugins/cmakeprojectmanager/cmakeproject.h b/src/plugins/cmakeprojectmanager/cmakeproject.h index ffb3cce73a..3f383cc9dc 100644 --- a/src/plugins/cmakeprojectmanager/cmakeproject.h +++ b/src/plugins/cmakeprojectmanager/cmakeproject.h @@ -57,7 +57,8 @@ class CMakeBuildSettingsWidget; struct CMakeBuildTarget { QString title; - QString executable; + QString executable; // TODO: rename to output? + bool library; QString workingDirectory; QString makeCommand; QString makeCleanCommand; |