Skip to content
This repository was archived by the owner on Feb 16, 2020. It is now read-only.

Latest commit

 

History

History
28 lines (24 loc) · 1.05 KB

README.md

File metadata and controls

28 lines (24 loc) · 1.05 KB

Java-BSU

A repository with the JAVA labs (BSU/FAMCS).

Prerequisites

Structure

  • Every lab is located on its own branch.
  • Base branch only includes README.md, Makefile,.gitignore and an initial src/ folder.

Getting started

Cloning project

  1. Clone or download repository: git clone [email protected]:Eug-VS/Java-BSU.git
  2. Checkout desired branch
  • List all branches: git branch -a
  • Checkout: git checkout BRANCHNAME

Running project

IntelliJ IDEA

  1. Open IntelliJ IDEA starting screen and proceed with Import Project, answering yes on every following question.
  2. Go to Run/Edit configurations/Templates/Application
  3. Put Main in the Main class field
  4. Apply changes
  5. Build project (Ctrl+F9)
  6. Run project (Shift+F10)

Shell

To build, pack and run your project from a shell simply run command make.

Keep it mind that it requires make to be installed. More info on make: https://www.gnu.org/software/make/