From 99471cfc0cb352b599a30aaed04ae32ad13f64bd Mon Sep 17 00:00:00 2001 From: Gordon McCann Date: Mon, 6 Jun 2022 14:57:57 -0400 Subject: [PATCH] Change default behavior to static library --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1bdd288..ae4d3b6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.14) project(catima) ############ options ############# -option(BUILD_SHARED_LIBS "build as shared library" ON) +option(BUILD_SHARED_LIBS "build as shared library" OFF) option(PYTHON_MODULE "compile the Catima python module(requires numpy and cython installed)" OFF) option(TESTS "build tests" OFF) option(EXAMPLES "build examples" OFF)