Triangle Shading Graphic
Using CMake:1. create a subdirectory (under HW3) named Debug: mkdir Debug2. enter the subdir: cd Debug3. and generate the makefiles: cmake .. (mind the ..)To generating a release build environment, just repeat the above steps, but in with a subdirectorynamed Release. To compile run (inside the Debug or Release directory): make Files that need to […]
