The goal of today's meeting it to learn about building larger software projects that have multiple modules of code, unit tests, and main programs.
Links:
GitHub Invitation URL: exercise8
Steps:
Clone the assignment for today after accepting the GitHub invitation at the link above.
git clone https://github.com/VTECE3574/exercise08-USER.git
where USER is your GitHub username. You may have to enter your GitHub username and password.
Examine the repository. There is a small set of source files in the repository that implement a simple module of code, a unit test for it, and a program that uses the module.
Write a CMakeLists.txt file to build the unit test and the program.
Configure the project using CMake, compile the project, and run the unit tests on your host platform.
Now, use git to commit the CMakeLists.txt file you added to the local repository.
Finally, use git push to synchronize the repository with that on GitHub.
You have completed the Exercise.