Commit 8645cc2b authored by Carles Cufi's avatar Carles Cufi Committed by Anas Nashif
Browse files

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: default avatarCarles Cufi <carles.cufi@nordicsemi.no>
parent 90e65360
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -184,7 +184,7 @@ add_custom_target(
)

if(WIN32)
  set(SEP ;)
  set(SEP $<SEMICOLON>)
else()
  set(SEP :)
endif()