https://github.com/garvit-joshi/kompiler
A package for auto compiling C++ files as soon as they are saved.
https://github.com/garvit-joshi/kompiler
cpp python
Last synced: 25 days ago
JSON representation
A package for auto compiling C++ files as soon as they are saved.
- Host: GitHub
- URL: https://github.com/garvit-joshi/kompiler
- Owner: garvit-joshi
- License: mit
- Created: 2021-04-07T11:28:59.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2025-12-29T17:01:58.000Z (3 months ago)
- Last Synced: 2025-12-29T17:52:54.516Z (3 months ago)
- Topics: cpp, python
- Language: Python
- Homepage: https://pypi.org/project/kompiler/
- Size: 82 KB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Kompiler
A package for auto compiling C++ files as soon as they are saved.
```
Usage: kompiler [File.cpp] [COMMAND...]
eg:
❯ kompiler hello.cpp
Command used for compiling: g++ hello.cpp
❯ kompiler hello.cpp -std=c++11 -O2 -Wall hello.cpp -o hello
Command used for compiling: g++ -std=c++11 -O2 -Wall hello.cpp -o hello
❯ kompiler 3.cpp -std=c++11 -O2 -Wall 3.cpp -o hello "&&" ./hello
Command used for compiling: g++ -std=c++11 -O2 -Wall 3.cpp -o hello && ./hello
```