Skip to content

Latest commit

 

History

History
37 lines (29 loc) · 1.9 KB

File metadata and controls

37 lines (29 loc) · 1.9 KB

GitHub Copilot C++ Workshop Preparation

Prerequisites

GitHub Copilot

  • GitHub Account
  • GitHub Copilot License
  • VSCode


(Note: This readme is written for VSCode. If you are using JetBrains IDE, please refer to the JetBrains IDE section of the GitHub Copilot documentation.)

Workshop Code & C++ basic environment

  • Source Code (This repository. Git Clone it to your local machine or get files from your instructor.)
  • CMake
  • Make
  • GCC (or Clang)

Enable GitHub Copilot Extension

Verification

GitHub Copilot is Enabled

  • Make sure the Extension is enabled by checking the status bar at the bottom of the VSCode window.

Build environment

Run the following two commands to prepare the make file and then build the project. You can run the following commands in your terminal or in VSCode Terminal.

cmake -S . -B build
cmake --build build

Trust Center