From e8574ccf175d2286e36d96aaca526d5668d4d9be Mon Sep 17 00:00:00 2001 From: Marc Dumais Date: Mon, 1 Jun 2020 19:41:36 -0400 Subject: [PATCH] Add C/C++ support to browser and electron example apps As per recent discussion, it sounds like it would be useful to add C/C++ support in the example apps in this repo. Signed-off-by: Marc Dumais --- browser-app/package.json | 2 ++ electron-app/package.json | 2 ++ 2 files changed, 4 insertions(+) diff --git a/browser-app/package.json b/browser-app/package.json index 1513f4ae2..3b184b711 100644 --- a/browser-app/package.json +++ b/browser-app/package.json @@ -15,6 +15,8 @@ "@theia/markers": "next", "@theia/monaco": "next", "@theia/messages": "next", + "@theia/cpp": "next", + "@theia/cpp-debug": "next", "viewer-prototype": "0.0.0" }, "devDependencies": { diff --git a/electron-app/package.json b/electron-app/package.json index dd0950acf..35ca5bfd1 100644 --- a/electron-app/package.json +++ b/electron-app/package.json @@ -15,6 +15,8 @@ "@theia/markers": "next", "@theia/monaco": "next", "@theia/messages": "next", + "@theia/cpp": "next", + "@theia/cpp-debug": "next", "@theia/electron": "next", "viewer-prototype": "0.0.0" },