diff --git a/Core/Samples/inc/BAVersion.h b/Core/Samples/inc/BAVersion.h index b580d8fc5aa0220cc727df5fd533cb81fe2c7ede..69621aa01396a74a1bb58558474b1228feafa52c 100644 --- a/Core/Samples/inc/BAVersion.h +++ b/Core/Samples/inc/BAVersion.h @@ -23,7 +23,7 @@ namespace BornAgain { const int major_version_number = 0; const int minor_version_number = 9; - const int patch_version_number = 2; + const int patch_version_number = 3; inline int GetMajorVersionNumber() { return major_version_number; } inline int GetMinorVersionNumber() { return minor_version_number; } diff --git a/Doc/Doxygen/Doxyfile b/Doc/Doxygen/Doxyfile index 1fbcf5d6469a3c237d255eddb575e260e373756d..71e7ac5d78084aaac390def2577a9c1616b6f656 100644 --- a/Doc/Doxygen/Doxyfile +++ b/Doc/Doxygen/Doxyfile @@ -38,7 +38,7 @@ PROJECT_NAME = "BornAgain" # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = 0.9.2 +PROJECT_NUMBER = 0.9.3 # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a diff --git a/cmake/modules/SearchInstalledSoftware.cmake b/cmake/modules/SearchInstalledSoftware.cmake index 8870b7906ec96ca71c28bbc148df8be51e6a854a..e3b670fbee688e58b0704e3df527c11f8b1629a9 100644 --- a/cmake/modules/SearchInstalledSoftware.cmake +++ b/cmake/modules/SearchInstalledSoftware.cmake @@ -77,13 +77,16 @@ if(BORNAGAIN_PYTHON OR BORNAGAIN_GUI) # message(SEND_ERROR "No python libraries have been found") #endif() - GET_FILENAME_COMPONENT(PyLibExtension ${PYTHON_LIBRARIES} EXT) - if(${PyLibExtension} STREQUAL ".a") - find_package( Threads ) - set(syslibs "-lm -ldl -lutil ${CMAKE_THREAD_LIBS_INIT} -rdynamic") - message(STATUS "--> Static python library detected, adding ${syslibs}") - set(PYTHON_LIBRARIES "${syslibs} ${PYTHON_LIBRARIES}") + if(NOT WIN32) + GET_FILENAME_COMPONENT(PyLibExtension ${PYTHON_LIBRARIES} EXT) + if(${PyLibExtension} STREQUAL ".a") + find_package( Threads ) + set(syslibs "-lm -ldl -lutil ${CMAKE_THREAD_LIBS_INIT} -rdynamic") + message(STATUS "--> Static python library detected, adding ${syslibs}") + set(PYTHON_LIBRARIES "${syslibs} ${PYTHON_LIBRARIES}") + endif() endif() + #message(STATUS "--> Python libraries ${PYTHON_LIBRARIES}") find_package(Numpy REQUIRED)