Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 902 Bytes

README.md

File metadata and controls

28 lines (21 loc) · 902 Bytes

PACS

Official repository of the Programming and Architecture of Computing Systems course of the MS in Robotics, Graphics, and Computer Vision

Code snippets from Class

The directory code_examples contains many of the small C++ programs and fragments from the slides.

To compile them, you can use cmake. For example:

cd code_examples
mkdir build
cd build
cmake ../ # generate the Makefile with cmake
make # compile the examples
ls # list the examples

Although, we do not provide support for Windows. If you want to build and run the test on Windows, please consider using CMake with Visual Studio.

You can download the free community edition of Visual Studio 2019, and then with you github creentials download this repo and compile it.