mirror of
https://github.com/platformio/platformio-core.git
synced 2025-07-31 18:44:27 +02:00
Fix Project Generator for CLion IDE using Windows OS // Resolve #785
This commit is contained in:
@@ -12,8 +12,11 @@ PlatformIO 3.0
|
||||
`platformio init <http://docs.platformio.org/en/stable/userguide/cmd_init.html>`__
|
||||
command
|
||||
* Deprecated ``lib_force`` option, please use `lib_deps <http://docs.platformio.org/en/stable/projectconf.html#lib-deps>`__ instead
|
||||
* Fixed SSL Server-Name-Indication for Python < 2.7.9
|
||||
* Return valid exit code from ``plaformio test`` command
|
||||
* Fixed Project Generator for CLion IDE using Windows OS
|
||||
(`issue #785 <https://github.com/platformio/platformio/issues/785>`_)
|
||||
* Fixed SSL Server-Name-Indication for Python < 2.7.9
|
||||
(`issue #774 <https://github.com/platformio/platformio/issues/774>`_)
|
||||
|
||||
-------
|
||||
|
||||
|
@@ -1,8 +1,8 @@
|
||||
set(ENV{PATH} "{{env_path}}")
|
||||
set(PLATFORMIO_CMD "{{platformio_path}}")
|
||||
|
||||
SET(CMAKE_C_COMPILER "{{cc_path}}")
|
||||
SET(CMAKE_CXX_COMPILER "{{cxx_path}}")
|
||||
SET(CMAKE_C_COMPILER "{{cc_path.replace("\\", "/")}}")
|
||||
SET(CMAKE_CXX_COMPILER "{{cxx_path.replace("\\", "/")}}")
|
||||
SET(CMAKE_CXX_FLAGS_DISTRIBUTION "{{cxx_flags}}")
|
||||
SET(CMAKE_C_FLAGS_DISTRIBUTION "{{cc_flags}}")
|
||||
|
||||
|
Reference in New Issue
Block a user