GitXplorerGitXplorer
b

EECE-2560-Projects

public
0 stars
0 forks
0 issues

Commits

List of commits on branch master.
Verified
d69119c0c22a8b47782212c2a0e84eb9141dc0a9

Merge branch 'project-5/brian'

bbrianschubert committed 4 years ago
Verified
8b5acba80c93820bf6543cddb288e96ea1b43a7a

Update human-readable maze rendering

bbrianschubert committed 4 years ago
Verified
fefc65ade4ad19dfdd3d9cf9615fba6bed590cb0

Apply misc style and documentation tweaks for proj 5b

bbrianschubert committed 4 years ago
Verified
3fdccfc062c526cf4ffc77f3d388c5ca68e02fe6

Add breadth-first search for proj 5b

bbrianschubert committed 4 years ago
Verified
aed8c0fe32ad8c78d2a3866ec40e32603f6cbdcd

Improve human-readable directions format

bbrianschubert committed 4 years ago
Verified
e0674a1d7de04baad2960c56bfaa0b9627abb6a1

Fix type in revised proj 5a executable and apply misc style updates

bbrianschubert committed 4 years ago

README

The README file for this repository.

EECE 2560 Projects

Group members:

Group ID: 8-schcre

Projects from our EECE 2560 Fundamentals of Engineering Algorithms course taken Fall 2020 at Northeastern University.

Building

All project targets are specified using CMake.

Using Makefiles

To build all projects using GNU or Unix Makefiles, run

$ mkdir cmake-build
$ cd cmake-build
$ cmake .. -G"Unix Makefiles"
$ make all

The -G"Unix Makefiles flag is not required if this is the default generator for your system.

Using CLion

CLion will recognize CMake targets automatically. No additional configuration required.

Using MS Visual Studio

Either follow the steps in Microsoft's documentation for building CMake projects, or generate Visual Studio project files manually by running

$ cmake . -G"Visual Studio 16 2019"

See the CMake documentation for a list of supported Visual Studio generators.

Using Xcode

Xcode project files can be generated by running

$ cmake . -G"Xcode"