20 lines
460 B
Python
Executable File
20 lines
460 B
Python
Executable File
# This is not a standalone Python script, but a build declaration file
|
|
# to be read by bin/make.py. Please run bin/make.py --help.
|
|
|
|
from comake.settings import settings
|
|
|
|
targets['colinux'] = Target(
|
|
inputs = [Input('src/build')],
|
|
tool = Empty(),
|
|
)
|
|
|
|
targets['installer'] = Target(
|
|
inputs = [Input('colinux')],
|
|
tool = Empty(),
|
|
settings_options=Options(
|
|
overriders=dict(
|
|
final_build_target='installer',
|
|
),
|
|
),
|
|
)
|