mirror of
https://github.com/platformio/platformio-core.git
synced 2025-07-29 17:47:14 +02:00
Fix project generator for CLion IDE under Windows OS with invalid path to executable // Resolve #326
This commit is contained in:
@ -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)
|
||||
~~~~~~~~~~~~~~~~~~
|
||||
|
@ -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"
|
||||
|
@ -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
|
||||
|
Reference in New Issue
Block a user