aboutsummaryrefslogtreecommitdiffhomepage
path: root/org/sdp_conf.org
blob: a0780489e0c3ddfb7a425a63d444aff6003ea353 (plain)
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
* configuration tangles
** TODO version.txt: set version                                    :version:

#+BEGIN_SRC d  :tangle ../views/version.txt
/+ obt - org generated file +/
struct Version {
  int major;
  int minor;
  int patch;
}
enum ver = Version(1, 0, 0);
#+END_SRC

** dub
*** dub.json                                                :dub:description:

#+BEGIN_SRC json  :tangle ../dub.json
{
  "name": "sdp",
  "targetType": "executable",
  "targetName": "sdp",
  "targetPath": "bin",
  "description": "sisu document parser.",
  "authors": ["Ralph Amissah"],
  "homepage": "http://sisudoc.org",
  "license": "GPL-3.0",
  "add-path": "./src/sdp",
  "dependencies": {
  }
}
#+END_SRC

*** dub.selections.json                              :dub:selections:version:

#+BEGIN_SRC json  :tangle ../dub.selections.json
{
	"fileVersion": 1,
	"versions": {}
}
#+END_SRC