doc: cmake: Fix PYTHONPATH on Windows
Correctly set the separator as a semicolon on Windows when constructing the PYTHONPATH environment variable so that CMake doesn't intepret it and swallow it. Signed-off-by: Carles Cufi <carles.cufi@nordicsemi.no>
This commit is contained in:
parent
90e6536053
commit
8645cc2b94
1 changed files with 1 additions and 1 deletions
|
@ -184,7 +184,7 @@ add_custom_target(
|
||||||
)
|
)
|
||||||
|
|
||||||
if(WIN32)
|
if(WIN32)
|
||||||
set(SEP ;)
|
set(SEP $<SEMICOLON>)
|
||||||
else()
|
else()
|
||||||
set(SEP :)
|
set(SEP :)
|
||||||
endif()
|
endif()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue