-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fpm.toml
53 lines (42 loc) · 912 Bytes
/
fpm.toml
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
name = "metis"
version = "0.1.0"
license = "license"
author = "gnikit"
maintainer = "[email protected]"
copyright = "Copyright 2022, gnikit"
[build]
auto-executables = false
auto-tests = false
auto-examples = false
[install]
library = true
[library]
include-dir = ["src/metis/include"]
[dependencies]
gklib = { git = "https://github.com/gnikit/GKlib.git" }
[preprocess]
cpp.macros = ["IDXTYPEWIDTH=64", "REALTYPEWIDTH=64"]
[[executable]]
name = "cmpfillin"
main = "cmpfillin.c"
source-dir = "app/cmpfillin"
[[executable]]
name = "gpmetis"
main = "gpmetis.c"
source-dir = "app/gpmetis"
[[executable]]
name = "graphchk"
main = "graphchk.c"
source-dir = "app/graphchk"
[[executable]]
name = "m2gmetis"
main = "m2gmetis.c"
source-dir = "app/m2gmetis"
[[executable]]
name = "mpmetis"
main = "mpmetis.c"
source-dir = "app/mpmetis"
[[executable]]
name = "ndmetis"
main = "ndmetis.c"
source-dir = "app/ndmetis"