forked from platformio/platformio-core
Merge branch 'develop' into feature/platformio-30
* develop: Automatically add source directory to "CPPPATH" of Build System
This commit is contained in:
@ -20,6 +20,7 @@ PlatformIO 2.0
|
|||||||
|
|
||||||
* Simplified documentation for `Continuous Integration with AppVeyor <http://docs.platformio.org/en/latest/ci/appveyor.html>`__
|
* Simplified documentation for `Continuous Integration with AppVeyor <http://docs.platformio.org/en/latest/ci/appveyor.html>`__
|
||||||
(`issue #671 <https://github.com/platformio/platformio/issues/671>`_)
|
(`issue #671 <https://github.com/platformio/platformio/issues/671>`_)
|
||||||
|
* Automatically add source directory to ``CPPPATH`` of Build System
|
||||||
* Added support for Silicon Labs SLSTK3401A (Pearl Gecko) and
|
* Added support for Silicon Labs SLSTK3401A (Pearl Gecko) and
|
||||||
MultiTech mDot F411 ARM mbed based boards
|
MultiTech mDot F411 ARM mbed based boards
|
||||||
* Added support for MightyCore ATmega8535 board
|
* Added support for MightyCore ATmega8535 board
|
||||||
|
@ -79,6 +79,7 @@ def BuildProgram(env):
|
|||||||
env.Append(
|
env.Append(
|
||||||
CPPDEFINES=["PLATFORMIO={0:02d}{1:02d}{2:02d}".format(
|
CPPDEFINES=["PLATFORMIO={0:02d}{1:02d}{2:02d}".format(
|
||||||
*pioversion_to_intstr())],
|
*pioversion_to_intstr())],
|
||||||
|
CPPPATH=["$PROJECTSRC_DIR"],
|
||||||
LIBS=deplibs,
|
LIBS=deplibs,
|
||||||
LIBPATH=["$BUILD_DIR"]
|
LIBPATH=["$BUILD_DIR"]
|
||||||
)
|
)
|
||||||
|
Reference in New Issue
Block a user