Skip to content

Commit

Permalink
stub: try to avoid have ; replace by list separator
Browse files Browse the repository at this point in the history
  • Loading branch information
jorisv committed Nov 20, 2023
1 parent 19de0a7 commit e3ac935
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions stubs.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -107,10 +107,10 @@ function(GENERATE_STUBS module_path module_name module_install_dir)
if(TARGET ${py_target})
set(_is_lib "$<STREQUAL:$<TARGET_PROPERTY:${py_target},TYPE>,SHARED_LIBRARY>")
set(_target_dir "$<TARGET_FILE_DIR:${py_target}>")
set(_path "$<${_is_lib}:${_target_dir}>;${_path}")
set(_path "$<${_is_lib}:${_target_dir};>${_path}")
endif()
endforeach()
set(ENV_PATH PATH=${_path})
set(ENV_PATH "PATH=${_path}")
endif()

add_custom_target(
Expand Down

0 comments on commit e3ac935

Please sign in to comment.