Skip to content

Commit

Permalink
Merge pull request #49 from adrianbroher/fix-nmake-pythonpath
Browse files Browse the repository at this point in the history
Escape PYTHONPATH macro value separator for NMake
  • Loading branch information
jcfr committed May 18, 2015
2 parents 8a382d3 + 30ce6c9 commit 8db43e8
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions cmake/libpython/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,8 @@ elseif(WIN32)
set(PATHSEP "%3B")
elseif( (${MSVC}) AND ("${CMAKE_GENERATOR}" MATCHES "^Ninja") )
set(PATHSEP "\;")
elseif( (${MSVC}) AND ("${CMAKE_GENERATOR}" MATCHES "^NMake") )
set(PATHSEP "\;")
else()
set(PATHSEP ";")
endif()
Expand Down

0 comments on commit 8db43e8

Please sign in to comment.