Group members:
- Chandler Cree <cree.d@northeastern.edu>
- Brian Schubert <schubert.b@northeastern.edu>
Group ID: 8-schcre
Projects from our EECE 2560 Fundamentals of Engineering Algorithms course taken Fall 2020 at Northeastern University.
All project targets are specified using CMake.
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.
CLion will recognize CMake targets automatically. No additional configuration required.
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.
Xcode project files can be generated by running
$ cmake . -G"Xcode"