Change README
This commit is contained in:
parent
bde16591c5
commit
15d7304baf
2 changed files with 10 additions and 9 deletions
4
make.py
4
make.py
|
|
@ -8,11 +8,11 @@ from umake import make
|
|||
|
||||
class Config:
|
||||
CC = 'g++' # Compiler to call
|
||||
APPS = ['app_name'] # Output binaries (need to be found as .cpp directly in SOURCE_DIR)
|
||||
APPS = ['app_name'] # Output binaries (path to source without extension)
|
||||
IGNORE_APPS = []
|
||||
JOB_COUNT = int(os.cpu_count() * 0.8) # Concurent jobs (multi-processing)
|
||||
|
||||
BIN_DIR = Path('bin') # Output directory (binaries)
|
||||
BIN_DIR = Path('bin') # Output directory (binaries)
|
||||
INCLUDE_DIR = Path('include') # Include directory (header files)
|
||||
OBJECT_DIR = Path('obj') # Temporary directory (object files)
|
||||
SOURCE_DIR = Path('src') # Source directories
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue