forked from xuos/xiuos
APP_Framework/Framework/: solve the bug about link
This commit is contained in:
parent
8845864e46
commit
582a5a4043
|
@ -2,7 +2,8 @@ import os
|
|||
Import('RTT_ROOT')
|
||||
from building import *
|
||||
SOURCES = []
|
||||
SOURCES = ['adapter_bluetooth.c'] + SOURCES
|
||||
if GetDepend(['CONNECTION_ADAPTER_BLUETOOTH']):
|
||||
SOURCES = ['adapter_bluetooth.c'] + SOURCES
|
||||
objs = []
|
||||
cwd = GetCurrentDir()
|
||||
path = [cwd]
|
||||
|
|
|
@ -2,7 +2,8 @@ import os
|
|||
Import('RTT_ROOT')
|
||||
from building import *
|
||||
SOURCES = []
|
||||
SOURCES = ['adapter_nbiot.c'] + SOURCES
|
||||
if GetDepend(['CONNECTION_ADAPTER_NB']):
|
||||
SOURCES = ['adapter_nbiot.c'] + SOURCES
|
||||
objs = []
|
||||
cwd = GetCurrentDir()
|
||||
path = [cwd]
|
||||
|
|
|
@ -2,7 +2,8 @@ import os
|
|||
Import('RTT_ROOT')
|
||||
from building import *
|
||||
SOURCES = []
|
||||
SOURCES = ['adapter_wifi.c'] + SOURCES
|
||||
if GetDepend(['CONNECTION_ADAPTER_WIFI']):
|
||||
SOURCES = ['adapter_wifi.c'] + SOURCES
|
||||
objs = []
|
||||
cwd = GetCurrentDir()
|
||||
path = [cwd]
|
||||
|
|
Loading…
Reference in New Issue