Skip to content
Snippets Groups Projects
Commit 261e88ad authored by Lorenz Gruber's avatar Lorenz Gruber
Browse files

fix external library include

parent 62666793
Branches
No related tags found
No related merge requests found
Pipeline #66628 passed
......@@ -4,6 +4,7 @@ set(CMAKE_CXX_STANDARD 23)
option(FISHNET_TEST "Enable unit tests for Fishnet components" ON)
option(FISHNET_COVERAGE "Enable coverage reporting" OFF)
set(FISHNET_APPS ON CACHE INTERNAL "Build applications")
set(FISHNET_SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR} CACHE INTERNAL "Build applications")
set(FISHNET_NAME Fishnet)
add_subdirectory(lib)
if(FISHNET_APPS)
......
......@@ -3,9 +3,9 @@ if (MSVC)
else()
add_compile_options(-Wall -Wextra -Wpedantic -Wconversion -Wno-unused-parameter -Wno-unused-function -fconcepts-diagnostics-depth=4)
endif()
include(../extern/cli11.cmake)
include(../extern/json.cmake)
include(../extern/magic_enum.cmake)
include(${FISHNET_SOURCE_DIR}/extern/cli11.cmake)
include(${FISHNET_SOURCE_DIR}/extern/json.cmake)
include(${FISHNET_SOURCE_DIR}/extern/magic_enum.cmake)
add_subdirectory(shapefile_splitter)
add_subdirectory(sda-workflow)
add_subdirectory(examples)
\ No newline at end of file
include(${CMAKE_SOURCE_DIR}/extern/memgraph.cmake)
include(${FISHNET_SOURCE_DIR}/extern/memgraph.cmake)
add_library(memgraphAdapter INTERFACE)
add_dependencies(memgraphAdapter mgclient-proj)
target_include_directories(memgraphAdapter INTERFACE ${CMAKE_CURRENT_LIST_DIR})
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment