Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/queenofsquiggles/squiggles-stupid-build-system

A fairly stupid C++ build system that is very loosely inspired by rust's cargo. Please dear god don't use this in professional production
https://github.com/queenofsquiggles/squiggles-stupid-build-system

Last synced: 11 days ago
JSON representation

A fairly stupid C++ build system that is very loosely inspired by rust's cargo. Please dear god don't use this in professional production

Awesome Lists containing this project

README

        

Squiggles's Stupid Build System

A really stupid build system for C++ that assumes that:
- All of your files are in `./src`
- More deeply nested files should be compiled first
- You do not have an overly complex project
- you have `g++` installed (all this does is construct detailed `g++` calls)
- no two source files (`.c` or `cpp`) have the same file name (object files are generated in a flat directory "structure")

I have absolutely no clue why anyone would ever want to use this. But I do because I am super lazy and just want to turn typing time into executable binaries so I made this.