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
FROM aharonamir/vscode-remote-gcc-vcpkg | |
# install project specific dependencies | |
# install deb packages | |
USER root | |
COPY ./script/install-deb-dependencies.sh /usr/ | |
RUN chmod +x /usr/install-deb-dependencies.sh | |
RUN apt-get update | |
RUN /usr/install-deb-dependencies.sh | |
# Clean up APT when done. |
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
... | |
# add vcpkg toochain | |
include(/home/vscode/vcpkg/scripts/buildsystems/vcpkg.cmake) | |
# find packages: | |
# some packages in vcpkg will require to add find_package | |
# e.g find_package(nlohmann_json CONFIG REQUIRED) | |
# vcpkg will notify that when installing the specific package | |
# libs |
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
# MULTI STAGE BUILD | |
FROM aharonamir/vscode-remote-gcc-vcpkg as builder | |
# install project specific dependencies | |
# install deb packages | |
USER root | |
COPY ./script/install-deb-dependencies.sh /usr/ | |
RUN chmod +x /usr/install-deb-dependencies.sh | |
RUN apt-get update |
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
{ | |
// Use IntelliSense to learn about possible attributes. | |
// Hover to view descriptions of existing attributes. | |
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"name": "Test Sqlite", | |
"type": "cppdbg", | |
"request": "launch", |
OlderNewer