From e43e3a93c02928165ccc5cbea6390985878b9918 Mon Sep 17 00:00:00 2001 From: Wayne Stambaugh Date: Mon, 22 Oct 2018 19:12:17 -0400 Subject: [PATCH] Revert "cmake: avoid declaring a redundant concurrent _pcbnew.so target" This reverts commit 2e047b45b4f4402400d427cb06fe80e4cfe9b91a. --- pcbnew/CMakeLists.txt | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/pcbnew/CMakeLists.txt b/pcbnew/CMakeLists.txt index a66a8b1998..efe36a5fe2 100644 --- a/pcbnew/CMakeLists.txt +++ b/pcbnew/CMakeLists.txt @@ -819,15 +819,13 @@ if( KICAD_SCRIPTING_MODULES ) ) else() - if( MINGW ) - # For phase 1, copy _pcbnew.kiface to the python module. - add_custom_command( OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/_pcbnew.${PYMOD_EXT} - DEPENDS pcbnew_kiface - COMMAND ${CMAKE_COMMAND} -E copy _pcbnew.kiface _pcbnew.${PYMOD_EXT} - COMMENT "Creating python's pcbnew native module _pcbnew.${PYMOD_EXT} for command line use." - ) - endif( MINGW ) + # For phase 1, copy _pcbnew.kiface to the python module. + add_custom_command( OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/_pcbnew.${PYMOD_EXT} + DEPENDS pcbnew_kiface + COMMAND ${CMAKE_COMMAND} -E copy _pcbnew.kiface _pcbnew.${PYMOD_EXT} + COMMENT "Creating python's pcbnew native module _pcbnew.${PYMOD_EXT} for command line use." + ) add_custom_target( pcbnew_python_module ALL DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/_pcbnew.${PYMOD_EXT}