From 5637a8606bc3caeec3c590350de770c7fcec8dd7 Mon Sep 17 00:00:00 2001 From: Jerry Ge Date: Mon, 30 Oct 2023 10:18:45 -0700 Subject: Support loading shared libraries for custom operators - Add a new command line option to allow users to specify a custom defined dll library - Add a custom registry to store all registered libraries - Add a dummy example (custom_op_example.cpp) for demonstrating this new feature Signed-off-by: Jerry Ge Change-Id: I7c360835933f77e33fcbd772cabfe01d82282d47 --- CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt index 6556b27..117bc9f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -20,3 +20,5 @@ add_subdirectory(thirdparty) if(TOSA_TOOLS_BUILD_REFERENCE_MODEL) add_subdirectory(reference_model) endif() + +add_subdirectory(reference_model/custom_op_example) -- cgit v1.2.1