Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion bindings/pyroot/pythonizations/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,11 @@ target_link_libraries(PyROOT INTERFACE cppyy_backend cppyy ROOTPythonizations)

# Define library output directories for build and install trees
set(pymoduledir_build "${localruntimedir}/ROOT")
set(pymoduledir_install "${CMAKE_INSTALL_FULL_PYTHONDIR}/ROOT")
if(MSVC)
set(pymoduledir_install "${CMAKE_INSTALL_PYTHONDIR}/ROOT")
else()
set(pymoduledir_install "${CMAKE_INSTALL_FULL_PYTHONDIR}/ROOT")
endif()

# To make sure that the library also ends up in the right subdirectory in the
# build directory tree.
Expand Down
Loading