Our own implementation of C++ std library classes and data structures to investigate impact of different optimizations of performance.
Current Data Structures:
Collaborators: Ben, Chris
Further Notes ( TO BE REMOVED ): https://docs.google.com/document/d/10WjLhU_cxeN_wvX2Q9tp6nzZyLks1j78UNoN0ND10WI/edit
(WIP)
This project is fully supported in Visual Studio and it should detect the build configurations from the CMakePresets.json
file.
This allows you to run the different configurations directly from the Visual Studio GUI.
cmake {source folder dir} -G {build tool}
Example if your output directory is in the source directory and you want to use NMAKE as the build tool:
cmake .. -G "Nmake Makefiles"
nmake
UTD
Navigate to the project directory
cd UTD/UTD
Run cmake to generate make configurations with ./build/ as output dir
cmake -B ./build
Build the project with ./build/ as output dir
cmake --build ./build
Run the program found in build/ dir
./build/main
(Optional) Delete build
rm -rf build