rt-thread 私人库
Go to file
chaos.proton@gmail.com 8cf479caaa add "remove_components" feature
If one do not want to use some components in the RTT_ROOT, it can pass a remove_components=['the_component'] parameter to PrepareBuilding. Sample code is:

RTT_RTGUI = os.getenv('RTT_RTGUI')
# if GUI dir is set to other place, don't use the one in RTT_ROOT
if RTT_RTGUI:
    # prepare building environment
    objs = PrepareBuilding(env, RTT_ROOT, has_libcpu=False, remove_components=['rtgui'])
    objs += SConscript(os.path.join(RTT_RTGUI, 'SConscript'))
else:
    objs = PrepareBuilding(env, RTT_ROOT, has_libcpu=False)

You can safely omit the parameter if you do not want to remove any components.

git-svn-id: https://rt-thread.googlecode.com/svn/trunk@2227 bbd45198-f89e-11dd-88c7-29a3b14d5316
2012-07-22 11:17:04 +00:00
bsp move SDIO driver header files to the drivers/include directory and update rtdevice.h 2012-07-08 14:43:08 +00:00
components add "remove_components" feature 2012-07-22 11:17:04 +00:00
documentation Add astyle parameters from lgnq 2012-06-23 13:52:05 +00:00
examples sync with RTGUI c074ff2898b9e 2012-07-20 12:37:56 +00:00
include Add more symbols export for application module. 2012-07-06 11:20:53 +00:00
libcpu fixed s3c2440a context thread bug,patch contributor 2012-06-28 14:04:20 +00:00
src add the alignment display for signed integer 2012-07-18 13:38:50 +00:00
tools add "remove_components" feature 2012-07-22 11:17:04 +00:00
AUTHORS prepare for 0.3.0 final release. 2010-03-29 16:27:49 +00:00
COPYING import RT-Thread RTOS 0.3.x to Google SVN 2009-07-02 22:48:23 +00:00