Skip to content

Latest commit

 

History

History
47 lines (33 loc) · 1.42 KB

README.md

File metadata and controls

47 lines (33 loc) · 1.42 KB

AAWAJ(Social Media App):

Features:

  1. Message
  2. Post
  3. Follow
  4. Block
  5. View User profile

BUILD INSTRUCTIONS:


Installation:

Visual studio code extensions :

  • C/C++ intellisense
  • Cmake/Cmake tools

Setting environment variables:

Add the paths given below on environment variables.

  • path_/mingw/bin
  • C:\Program Files\CMake\bin

You need to Configure CMake on this project in VS code . You will then get options on bottom right of VS Code, to locate CMakeLists.txt which is in the project file itself. In case you didn't get that prompt, please follow instructions below to configure Cmake.

Cmake Configuration through Command Palette(Ctrl+ Shift + P) of VS Code:

Execute CMake:Configure on Command Palette. If it still didn't configure Cmake, follow the instructions below:

  1. Kits Specified for Cmake: GNU compiler (64/32bit)
  2. CMake:Quick Start
  3. CMake:Build
  • Also, restart IDE(Vs Code) after commands executed.

After Cmake is configured you get options on the bottom of VS Code to build and run the application using Cmake

In order to run the project from terminal use the command below:

path_to_file/build/project_name (project name as specified in cmakelist.txt)

Direct From VS code:

path_to_file/g++ main.cpp path_to_file/ ./a.exe