Skip to content
This repository has been archived by the owner on Nov 10, 2019. It is now read-only.
/ c-starter Public archive

A starting point for C projects ⚡

License

Notifications You must be signed in to change notification settings

jethrodaniel/c-starter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

38 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

c-starter

This a basic starter template for c code.

Installation

git clone --recurse-submodules https://github.com/jethrodaniel/c-starter.git your-project-name

cd your-project-name

./setup

It's that easy.

What it do

It sets you up with:

  • Either a Makefile or a Rakefile with basic project commands
  • Unit tests with Unity
  • Memory checking with valgrind
  • Tree output of the project

Additionally, if you choose to use Ruby in your build system:

Ruby Setup

You only need Ruby if you chose it during setup. If you don't have Ruby installed, rbenv is my recommended way to get Ruby - see their install section for more info.

git clone https://github.com/rbenv/rbenv.git ~/.rbenv

# For bash
echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bash_profile

# Set up rbenv in your shell
~/.rbenv/bin/rbenv init

# Verify the install
curl -fsSL https://github.com/rbenv/rbenv-installer/raw/master/bin/rbenv-doctor | bash

# Install ruby-build, a rbenv plugin to easily install rubies
mkdir -p "$(rbenv root)"/plugins
git clone https://github.com/rbenv/ruby-build.git "$(rbenv root)"/plugins/ruby-build

# Install our version of ruby
rbenv install 2.5.3

TODO

  • Add more example tests
  • Linters for both C and Ruby
  • More detailed README