From 83b2642da55830a02dd3a16de59ba72c448927cc Mon Sep 17 00:00:00 2001 From: Robert K Date: Wed, 24 Nov 2021 19:51:24 +0100 Subject: [PATCH] [bugfix][Python] Add missing install to _localfunctions.so --- python/dune/localfunctions/CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/python/dune/localfunctions/CMakeLists.txt b/python/dune/localfunctions/CMakeLists.txt index 8f0fac29..ed2e90c9 100644 --- a/python/dune/localfunctions/CMakeLists.txt +++ b/python/dune/localfunctions/CMakeLists.txt @@ -3,3 +3,5 @@ add_python_targets(localfunctions ) dune_add_pybind11_module(NAME _localfunctions) +set_property(TARGET _localfunctions PROPERTY LINK_LIBRARIES dunecommon dunegeometry APPEND) +install(TARGETS _localfunctions LIBRARY DESTINATION python/dune/localfunctions)