Align paths config (paths.py) with the new directory layout. Also rename the output build folder to .build

pull/1744/head
Mihail Stoyanov 2016-05-15 11:28:34 +01:00 committed by 0xc0170
parent d9734e5a32
commit 9bd2b4e4b1
2 changed files with 3 additions and 3 deletions

View File

@ -31,7 +31,7 @@ TOOLS_DATA = join(TOOLS, "data")
TOOLS_BOOTLOADERS = join(TOOLS, "bootloaders")
# mbed libraries
MBED_BASE = join(LIB_DIR, "mbed")
MBED_BASE = join(ROOT, "hal")
MBED_API = join(MBED_BASE, "api")
MBED_COMMON = join(MBED_BASE, "common")
@ -50,7 +50,7 @@ MBED_RPC = join(LIB_DIR, "rpc")
RPC_LIBRARY = join(BUILD_DIR, "rpc")
# mbed RTOS
RTOS = join(LIB_DIR, "rtos")
RTOS = join(ROOT, "rtos")
MBED_RTX = join(RTOS, "rtx")
RTOS_ABSTRACTION = join(RTOS, "rtos")

View File

@ -24,7 +24,7 @@ ROOT = abspath(join(dirname(__file__), ".."))
##############################################################################
# Build System Settings
##############################################################################
BUILD_DIR = abspath(join(ROOT, "build"))
BUILD_DIR = abspath(join(ROOT, ".build"))
# ARM
armcc = "standalone" # "keil", or "standalone", or "ds-5"