Fix project generator for CLion IDE under Windows OS with invalid path to executable // Resolve #326

This commit is contained in:
Ivan Kravets
2015-11-16 23:17:23 +02:00
parent 09ccae0f30
commit cf98750f4b
3 changed files with 5 additions and 2 deletions

View File

@ -27,6 +27,9 @@ PlatformIO 2.0
(`issue #316 <https://github.com/platformio/platformio/issues/316>`_)
* Fixed installation on Mac OS X El Capitan
(`issue #312 <https://github.com/platformio/platformio/issues/312>`_)
* Fixed project generator for CLion IDE under Windows OS with invalid path to
executable
(`issue #326 <https://github.com/platformio/platformio/issues/326>`_)
2.3.4 (2015-10-13)
~~~~~~~~~~~~~~~~~~

View File

@ -1,7 +1,7 @@
# Copyright (C) Ivan Kravets <me@ikravets.com>
# See LICENSE for details.
VERSION = (2, 4, "0.dev2")
VERSION = (2, 4, "0.dev3")
__version__ = ".".join([str(s) for s in VERSION])
__title__ = "platformio"

View File

@ -35,7 +35,7 @@ add_custom_target(
)
% if main_src_file:
add_executable({{project_name}} {{main_src_file}})
add_executable({{project_name}} {{main_src_file.replace("\\", "/")}})
% else:
#
# To enable code auto-completion, please specify path