1Import('RTT_ROOT')
2from building import *
3
4cwd = GetCurrentDir()
5group = []
6
7src = Split("""
8lcd_ssd1963.c
9""")
10CPPPATH = [cwd]
11
12if GetDepend('NU_PKG_USING_SSD1963_EBI'):
13    src += Glob('ssd1963_ebi.c')
14
15if GetDepend('NU_PKG_USING_SSD1963'):
16    group = DefineGroup('nu_pkgs_ssd1963', src, depend = [''], CPPPATH = CPPPATH)
17
18Return('group')
19
20