mirror of https://github.com/ARMmbed/mbed-os.git
Format paths python module
parent
5fbcc25b46
commit
acc59a1a86
|
@ -18,7 +18,7 @@ from os.path import join
|
|||
from os import getenv
|
||||
|
||||
# Conventions about the directory structure
|
||||
from settings import ROOT, BUILD_DIR
|
||||
from tools.settings import ROOT, BUILD_DIR
|
||||
|
||||
# Allow overriding some of the build parameters using environment variables
|
||||
BUILD_DIR = getenv("MBED_BUILD_DIR") or BUILD_DIR
|
||||
|
@ -104,8 +104,10 @@ CPPUTEST_SRC = join(CPPUTEST_DIR, "cpputest", "src", "CppUTest")
|
|||
CPPUTEST_INC = join(CPPUTEST_DIR, "cpputest", "include")
|
||||
CPPUTEST_INC_EXT = join(CPPUTEST_DIR, "cpputest", "include", "CppUTest")
|
||||
# Platform dependant code is here (for armcc compiler)
|
||||
CPPUTEST_PLATFORM_SRC = join(CPPUTEST_DIR, "cpputest", "src", "Platforms", "armcc")
|
||||
CPPUTEST_PLATFORM_INC = join(CPPUTEST_DIR, "cpputest", "include", "Platforms", "armcc")
|
||||
CPPUTEST_PLATFORM_SRC = join(CPPUTEST_DIR, "cpputest", "src", "Platforms",
|
||||
"armcc")
|
||||
CPPUTEST_PLATFORM_INC = join(CPPUTEST_DIR, "cpputest", "include", "Platforms",
|
||||
"armcc")
|
||||
# Function 'main' used to run all compiled UTs
|
||||
CPPUTEST_TESTRUNNER_SCR = join(TEST_DIR, "utest", "testrunner")
|
||||
CPPUTEST_TESTRUNNER_INC = join(TEST_DIR, "utest", "testrunner")
|
||||
|
|
Loading…
Reference in New Issue