Tagged Questions
1
vote
1answer
79 views
Making applications build system-aware
Build systems for web applications are great: they give dependency management, code minification, and the ability to use tech like SASS or CoffeeScript that require pre-processing.
However, I find ...
1
vote
3answers
174 views
C++ project organization to reduce unit testing build time
I want to organize tests for a project large enough that build time matters (especially for the CI server).
Say I have this code that I would like to test :
//foo/greet.cpp
#include <stdio.h>
...