This commit is contained in:
vector-of-bool 2016-04-19 21:46:10 -06:00
Родитель 6e46d88f7d
Коммит 5c7dd00e35
1 изменённых файлов: 4 добавлений и 2 удалений

Просмотреть файл

@ -479,13 +479,15 @@ export class CMakeTools {
if (!project_name)
return -1;
const target_type = (await vscode.window.showQuickPick([{
const target_type = (await vscode.window.showQuickPick([
{
label: 'Library',
description: 'Create a library',
}, {
label: 'Executable',
description: 'Create an executable'
}]));
}
]));
if (!target_type)
return -1;