From c4f85126776bcfb25d75f729bda7f577f780d038 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ante=20Pu=C5=A1i=C4=87?= Date: Fri, 5 Jan 2024 10:34:40 +0100 Subject: [PATCH] Update query module CMakeLists --- query_modules/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/query_modules/CMakeLists.txt b/query_modules/CMakeLists.txt index 7b967ddab..9428f13c4 100644 --- a/query_modules/CMakeLists.txt +++ b/query_modules/CMakeLists.txt @@ -56,8 +56,8 @@ install(PROGRAMS $ DESTINATION lib/memgraph/query_modules RENAME schema.so) # Also install the source of the example, so user can read it. +install(FILES schema.cpp DESTINATION lib/memgraph/query_modules/src) -install(FILES text_search.cpp DESTINATION lib/memgraph/query_modules/src) add_library(text_search SHARED text_search.cpp) target_include_directories(text_search PRIVATE ${CMAKE_SOURCE_DIR}/include) target_compile_options(text_search PRIVATE -Wall)