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')
|
Import('RTT_ROOT')
|
||||||
from building import *
|
from building import *
|
||||||
SOURCES = []
|
SOURCES = []
|
||||||
SOURCES = ['adapter_bluetooth.c'] + SOURCES
|
if GetDepend(['CONNECTION_ADAPTER_BLUETOOTH']):
|
||||||
|
SOURCES = ['adapter_bluetooth.c'] + SOURCES
|
||||||
objs = []
|
objs = []
|
||||||
cwd = GetCurrentDir()
|
cwd = GetCurrentDir()
|
||||||
path = [cwd]
|
path = [cwd]
|
||||||
|
|
|
@ -2,7 +2,8 @@ import os
|
||||||
Import('RTT_ROOT')
|
Import('RTT_ROOT')
|
||||||
from building import *
|
from building import *
|
||||||
SOURCES = []
|
SOURCES = []
|
||||||
SOURCES = ['adapter_nbiot.c'] + SOURCES
|
if GetDepend(['CONNECTION_ADAPTER_NB']):
|
||||||
|
SOURCES = ['adapter_nbiot.c'] + SOURCES
|
||||||
objs = []
|
objs = []
|
||||||
cwd = GetCurrentDir()
|
cwd = GetCurrentDir()
|
||||||
path = [cwd]
|
path = [cwd]
|
||||||
|
|
|
@ -2,7 +2,8 @@ import os
|
||||||
Import('RTT_ROOT')
|
Import('RTT_ROOT')
|
||||||
from building import *
|
from building import *
|
||||||
SOURCES = []
|
SOURCES = []
|
||||||
SOURCES = ['adapter_wifi.c'] + SOURCES
|
if GetDepend(['CONNECTION_ADAPTER_WIFI']):
|
||||||
|
SOURCES = ['adapter_wifi.c'] + SOURCES
|
||||||
objs = []
|
objs = []
|
||||||
cwd = GetCurrentDir()
|
cwd = GetCurrentDir()
|
||||||
path = [cwd]
|
path = [cwd]
|
||||||
|
|
Loading…
Reference in New Issue