From c774040e52a37eaa43ebe2336c86725ec5497344 Mon Sep 17 00:00:00 2001 From: Alejandro Saucedo Date: Sat, 3 Oct 2020 15:26:01 +0100 Subject: [PATCH] Updated godot example to use static lib --- .../godot_logistic_regression/gdnative_shared/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/godot_logistic_regression/gdnative_shared/CMakeLists.txt b/examples/godot_logistic_regression/gdnative_shared/CMakeLists.txt index 651c923ed..6091f8603 100644 --- a/examples/godot_logistic_regression/gdnative_shared/CMakeLists.txt +++ b/examples/godot_logistic_regression/gdnative_shared/CMakeLists.txt @@ -15,7 +15,7 @@ find_package(kompute REQUIRED) find_package(Vulkan REQUIRED) add_library(kompute_godot - SHARED + STATIC src/KomputeModelML.cpp src/KomputeGdNative.cpp)