Fix link failure on macOS (#133)
### Motivation
We need to link the Python shared library on non-Windows systems as
well. Otherwise, some link errors might happen.
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 98c1f62..493bfb0 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -80,9 +80,7 @@
set(PYTHON_WRAPPER_LIBS
${PULSAR_LIBRARY}
)
-if (MSVC)
- set(PYTHON_WRAPPER_LIBS ${PYTHON_WRAPPER_LIBS} Python3::Module)
-endif ()
+set(PYTHON_WRAPPER_LIBS ${PYTHON_WRAPPER_LIBS} Python3::Module)
message(STATUS "All libraries: ${PYTHON_WRAPPER_LIBS}")