Add watch option
This commit is contained in:
parent
f556df8c13
commit
64c31f6211
5 changed files with 358 additions and 153 deletions
1
make.py
1
make.py
|
|
@ -11,6 +11,7 @@ class Config:
|
|||
APPS = ['app_name'] # Output binaries (path to source without extension)
|
||||
IGNORE_APPS = []
|
||||
JOB_COUNT = int(os.cpu_count() * 0.8) # Concurent jobs (multi-processing)
|
||||
WATCH = False # Watch source modification for auto-compiling
|
||||
|
||||
BIN_DIR = Path('bin') # Output directory (binaries)
|
||||
INCLUDE_DIR = Path('include') # Include directory (header files)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue