Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
fishnet
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Lorenz Gruber
fishnet
Commits
261e88ad
Commit
261e88ad
authored
4 months ago
by
Lorenz Gruber
Browse files
Options
Downloads
Patches
Plain Diff
fix external library include
parent
62666793
Branches
Branches containing commit
No related tags found
No related merge requests found
Pipeline
#66628
passed
4 months ago
Stage: build
Stage: test
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
CMakeLists.txt
+1
-0
1 addition, 0 deletions
CMakeLists.txt
app/CMakeLists.txt
+3
-3
3 additions, 3 deletions
app/CMakeLists.txt
app/sda-workflow/src/shared/memgraph/CMakeLists.txt
+1
-1
1 addition, 1 deletion
app/sda-workflow/src/shared/memgraph/CMakeLists.txt
with
5 additions
and
4 deletions
CMakeLists.txt
+
1
−
0
View file @
261e88ad
...
...
@@ -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
)
...
...
This diff is collapsed.
Click to expand it.
app/CMakeLists.txt
+
3
−
3
View file @
261e88ad
...
...
@@ -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
This diff is collapsed.
Click to expand it.
app/sda-workflow/src/shared/memgraph/CMakeLists.txt
+
1
−
1
View file @
261e88ad
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
}
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment