-
-
Notifications
You must be signed in to change notification settings - Fork 395
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
25 lines (22 loc) · 696 Bytes
/
CMakeLists.txt
File metadata and controls
25 lines (22 loc) · 696 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# This file is part of the pgRouting project.
# Copyright (c) 2013-2026 pgRouting developers
# License: GPL-2 See https://github.com/pgRouting/pgrouting/blob/main/LICENSE
set(LOCAL_FILES
_maxflow.sql
_maxFlowMinCost.sql
edmondsKarp.sql
boykovKolmogorov.sql
pushRelabel.sql
_maxCardinalityMatch.sql
maxCardinalityMatch.sql
_edgeDisjointPaths.sql
edgeDisjointPaths.sql
maxFlowMinCost.sql
maxFlowMinCost_Cost.sql
maxFlow.sql
)
foreach (f ${LOCAL_FILES})
configure_file(${f} ${f})
list(APPEND PACKAGE_SQL_FILES ${CMAKE_CURRENT_BINARY_DIR}/${f})
endforeach()
set(PROJECT_SQL_FILES ${PROJECT_SQL_FILES} ${PACKAGE_SQL_FILES} PARENT_SCOPE)