Commit 894e6eb5 authored by Miguel Angel Ajo's avatar Miguel Angel Ajo

.dso -> .pyd is the right extension for python .dll WIN32

parent 5d0dee13
...@@ -462,7 +462,7 @@ if (KICAD_SCRIPTING_MODULES) ...@@ -462,7 +462,7 @@ if (KICAD_SCRIPTING_MODULES)
install(FILES ${CMAKE_BINARY_DIR}/pcbnew/pcbnew.py install(FILES ${CMAKE_BINARY_DIR}/pcbnew/pcbnew.py
DESTINATION ${PYTHON_DEST}) DESTINATION ${PYTHON_DEST})
if (WIN32) if (WIN32)
install(FILES ${CMAKE_BINARY_DIR}/pcbnew/_pcbnew.dso install(FILES ${CMAKE_BINARY_DIR}/pcbnew/_pcbnew.pyd
DESTINATION ${PYTHON_DEST}) DESTINATION ${PYTHON_DEST})
else(WIN32) else(WIN32)
install(FILES ${CMAKE_BINARY_DIR}/pcbnew/_pcbnew.so install(FILES ${CMAKE_BINARY_DIR}/pcbnew/_pcbnew.so
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment