511 B
511 B
CMake C Test Project
This project is designed to learn how to structure a C project with CMake and includes a simple library (testlib
) that implements basic functions.
Build Instructions
- Make the project
mkdir -p build cmake .. --fresh
- Run the project
make ./(the binary name)
Method two
- Run the script install
./install.sh | ./build/(the binary name)
To clean the project
- Run thee script clean
./clean.sh