small fixes

This commit is contained in:
Maarten L. Hekkelman
2025-05-15 08:38:43 +02:00
parent 0469b0387c
commit e3c7b0598e
2 changed files with 3 additions and 8 deletions

View File

@@ -85,11 +85,6 @@ if(WIN32)
# We do not want to write an export file for all our symbols...
set(CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS ON)
if(BUILD_PYTHON_MODULE)
message(WARNING "Python module is not working on Windows, yet, sorry")
set(BUILD_PYTHON_MODULE OFF)
endif()
endif()
if(MSVC)

View File

@@ -22,16 +22,16 @@
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
include(CPM)
if(CMAKE_VERSION GREATER_EQUAL 3.30)
cmake_policy(SET CMP0167 NEW)
endif()
find_package(Python REQUIRED COMPONENTS Interpreter Development)
find_package(Boost 1.83 QUIET COMPONENTS python)
find_package(Boost 1.84 QUIET COMPONENTS python)
if(NOT Boost_FOUND)
include(CPM)
# boost is a huge project and directly downloading the 'alternate release'
# from github is much faster than recursively cloning the repo.
CPMAddPackage(