aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/docker/dockerdevice.h
diff options
context:
space:
mode:
authorMarcus Tillmanns <[email protected]>2022-11-17 13:56:28 +0100
committerMarcus Tillmanns <[email protected]>2022-11-17 13:03:52 +0000
commitfb4e22ff7cd5286755e61ded62bbea5cd11e465c (patch)
tree87c830378ecca465df36bc08c64b503f03a1ceed /src/plugins/docker/dockerdevice.h
parente3c2db8db585bfd0bd2be297a808a1e3288634fa (diff)
Docker: Add option to enable flags needed for lldb
Diffstat (limited to 'src/plugins/docker/dockerdevice.h')
-rw-r--r--src/plugins/docker/dockerdevice.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/plugins/docker/dockerdevice.h b/src/plugins/docker/dockerdevice.h
index c455185117e..2119587c7b6 100644
--- a/src/plugins/docker/dockerdevice.h
+++ b/src/plugins/docker/dockerdevice.h
@@ -21,7 +21,8 @@ public:
{
return imageId == other.imageId && repo == other.repo && tag == other.tag
&& useLocalUidGid == other.useLocalUidGid && mounts == other.mounts
- && keepEntryPoint == other.keepEntryPoint;
+ && keepEntryPoint == other.keepEntryPoint
+ && enableLldbFlags == other.enableLldbFlags;
}
bool operator!=(const DockerDeviceData &other) const { return !(*this == other); }
@@ -45,6 +46,7 @@ public:
bool useLocalUidGid = true;
QStringList mounts = {Core::DocumentManager::projectsDirectory().toString()};
bool keepEntryPoint = false;
+ bool enableLldbFlags = false;
};
class DockerDevice : public ProjectExplorer::IDevice