-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
45 changed files
with
1,202 additions
and
301 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
// For format details, see https://aka.ms/vscode-remote/devcontainer.json or the definition README at | ||
// https://github.com/microsoft/vscode-dev-containers/tree/master/containers/ubuntu-18.04-git | ||
{ | ||
"name": "Ubuntu 18.04", | ||
"image": "heliconwave/mpeg2ts-ubuntu-18.04:latest", | ||
// The optional 'runArgs' property can be used to specify additional runtime arguments. | ||
"runArgs": [ | ||
// "--env LOCAL_USER_ID=${localEnv:UID}" | ||
// Uncomment the line if you will use a ptrace-based debugger like C++, Go, and Rust. | ||
// "--cap-add=SYS_PTRACE", "--security-opt", "seccomp=unconfined", | ||
|
||
// Uncomment the next line to use a non-root user. See https://aka.ms/vscode-remote/containers/non-root-user. | ||
// "-u", "docker" | ||
], | ||
|
||
// Runs in the end after image setup | ||
// "postCreateCommand": "/bin/bash /usr/local/bin/entrypoint.sh", | ||
|
||
// Container user VS Code should use when connecting | ||
"remoteUser": "docker", | ||
|
||
// Uncomment the next line if you want to publish any ports for example | ||
// for remote debugging | ||
// "appPort": [1234], | ||
|
||
// "containerEnv": { | ||
// "LOCAL_USER_ID": "${localEnv:UID}" | ||
// }, | ||
|
||
// Set environment variables for VS Code and sub-processes | ||
// "remoteEnv": { | ||
// "LOCAL_USER_ID": "${localEnv:UID}" | ||
// }, | ||
|
||
// Any *default* container specific VS Code settings | ||
// Terminal shell | ||
"settings": { | ||
"terminal.integrated.shell.linux": "/bin/bash" | ||
}, | ||
|
||
// An array of extension IDs that specify the extensions to | ||
// install inside the container when you first attach to it. | ||
"extensions": [ | ||
"ms-vscode.cmake-tools", | ||
"twxs.cmake", | ||
"ms-vscode.cpptools", | ||
"cheshirekow.cmake-format", | ||
"austin.code-gnu-global" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
cmake_minimum_required(VERSION 3.10) | ||
cmake_minimum_required(VERSION 3.5) | ||
|
||
project(benchmark-download NONE) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
cmake_minimum_required(VERSION 3.10) | ||
cmake_minimum_required(VERSION 3.5) | ||
|
||
project(googletest-download NONE) | ||
|
||
|
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.