From bdb995f35b89a485470ea125351e587d7b458b6f Mon Sep 17 00:00:00 2001 From: Harijs Grinbergs <1474290+TheExDeus@users.noreply.github.com> Date: Thu, 4 Nov 2021 21:24:47 +0200 Subject: [PATCH] Compile static lib --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 5e5d60b..69f2422 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -72,8 +72,8 @@ add_library(tkDNN SHARED ${tkdnn_SRC}) target_link_libraries(tkDNN ${tkdnn_LIBS}) #static -#add_library(tkDNN_static STATIC ${tkdnn_SRC}) -#target_link_libraries(tkDNN_static ${tkdnn_LIBS}) +add_library(tkDNN_static STATIC ${tkdnn_SRC}) +target_link_libraries(tkDNN_static ${tkdnn_LIBS}) # SMALL NETS add_executable(test_simple tests/simple/test_simple.cpp)