blob: 46c9659fbea388a63f6a89be77c3a7a0ec6fff7b (
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
|
* 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
|