From 77f269fcf1b5ddcbf2e5c4ae119d8700af857631 Mon Sep 17 00:00:00 2001 From: Bradley Lowekamp Date: Wed, 4 May 2016 15:17:48 -0400 Subject: [PATCH] Enable Python wheels over eggs by default Change-Id: Ib0ab83d9b935d372ebaff591f5410f44b6096097 --- Wrapping/Python/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Wrapping/Python/CMakeLists.txt b/Wrapping/Python/CMakeLists.txt index 24cde42302..d664960192 100644 --- a/Wrapping/Python/CMakeLists.txt +++ b/Wrapping/Python/CMakeLists.txt @@ -24,9 +24,9 @@ include_directories ( ${PYTHON_INCLUDE_DIR} ${CMAKE_CURRENT_SOURCE_DIR} ) # option ( SimpleITK_PYTHON_THREADS "Enable threaded python usage by unlocking the GIL." ON ) mark_as_advanced( SimpleITK_PYTHON_THREADS ) -option ( SimpleITK_PYTHON_EGG "Add building of python eggs to the dist target." ON ) +option ( SimpleITK_PYTHON_EGG "Add building of python eggs to the dist target." OFF ) mark_as_advanced( SimpleITK_PYTHON_EGG ) -option ( SimpleITK_PYTHON_WHEEL "Add building of python wheels to the dist target." OFF ) +option ( SimpleITK_PYTHON_WHEEL "Add building of python wheels to the dist target." ON ) mark_as_advanced( SimpleITK_PYTHON_WHEEL )