From 5c6fe7e94ed612c64af9ffc262a955d24575555b Mon Sep 17 00:00:00 2001 From: vansangpfiev Date: Thu, 23 May 2024 14:05:32 +0700 Subject: [PATCH] f: m --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 30ad8b0..1c224c3 100644 --- a/Makefile +++ b/Makefile @@ -35,11 +35,11 @@ else ifeq ($(shell uname -s),Linux) cp -r build/python examples/server/build/engines/cortex.python; else @mkdir -p examples/server/build/engines/cortex.python; \ + cp -rf build_deps/_install/lib/engines-3 build/python/; \ + cp -rf build_deps/_install/lib/libcrypto.* build/python/; \ + cp -rf build_deps/_install/lib/libssl.* build/python/; \ + cp -rf build_deps/_install/lib/ossl-modules build/python/; \ cp -r build/python examples/server/build/engines/cortex.python; \ - cp -rf build_deps/_install/lib/engines-3 examples/server/build/engines/cortex.python/python; \ - cp -rf build_deps/_install/lib/libcrypto.* examples/server/build/engines/cortex.python/python; \ - cp -rf build_deps/_install/lib/libssl.* examples/server/build/engines/cortex.python/python; \ - cp -rf build_deps/_install/lib/ossl-modules examples/server/build/engines/cortex.python/python; \ ls examples/server/build/engines/cortex.python/python; @cd examples/server/build; \ cmake .. && cmake --build . --config Release -j12