You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Clone the project
git clone https://github.com/NexusXian/linuxCppTemplate.git
cd linuxCppTemplate
# Create build directorycd build
# Generate Makefile
cmake ..
# Compile the project
make
# The generated executable is located in the bin/ directory
Or you can simply run the following command to build and run the project
#build the project
./scripts/build.sh
#run the project
./scripts/run.sh
#build and run the project
./scripts/launch.sh