Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/queenofsquiggles/squiggles-stupid-build-system
- Owner: QueenOfSquiggles
- License: mit
- Created: 2024-01-21T02:33:23.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-02-12T21:41:42.000Z (12 months ago)
- Last Synced: 2024-11-27T21:22:59.770Z (2 months ago)
- Language: C++
- Size: 149 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
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.