mirror of
https://gitee.com/zlgopen/awtk.git
synced 2024-12-02 12:08:16 +08:00
12 lines
229 B
Python
12 lines
229 B
Python
import os
|
|
import sys
|
|
|
|
env=DefaultEnvironment().Clone()
|
|
|
|
env.Library('image_gen', ['image_gen.c']);
|
|
env['LIBS'] = ['image_gen', 'imageloaderbitmap', 'imageloaderstb', 'common'] + env['LIBS']
|
|
env.Program('imagegen', ["main.c"])
|
|
|
|
|
|
|