Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/foxmd/make_template
Small template or example for makefile for C++
https://github.com/foxmd/make_template
cpp make makefile
Last synced: 9 days ago
JSON representation
Small template or example for makefile for C++
- Host: GitHub
- URL: https://github.com/foxmd/make_template
- Owner: FoxMD
- Created: 2022-11-02T14:36:32.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2022-11-03T18:38:49.000Z (about 2 years ago)
- Last Synced: 2024-04-21T10:06:15.239Z (8 months ago)
- Topics: cpp, make, makefile
- Language: Makefile
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Make template for small/mid C++ Projects
v0.9## Use
1) Open terminal in VSCode or CMD
2) Try make --version, if it fails go to ad 3)
3) Try Mingw32-make --version, if it fails, check if you have gcc compiler/make tools installed or in environmental variables
4) OPTIONAL - Install MinGW32
5) Use command from 2) or 3) without argument to build and run your app## Options
- make "builds and runs your app"
- make build "builds your app"
- make execute "runs your app if it is build"
- make clean "deletes every build file"## Arguments
- DEBUG "If true builds without optimisation and with debug option, default ON"
- ENABLE_WARNINGS "If true builds with Warning detection, default ON"
- WARNINGS_AS_ERRORS "If true all warnings are errors, wont build, default OFF"