summary refs log tree commit diff stats
path: root/tools/niminst/niminst.nim
Commit message (Expand)AuthorAgeFilesLines
...
* the installer can generate tar.gzAraq2015-04-291-12/+55
* Rename compiler/nim.ini back to compiler/installer.inidef2015-03-131-4/+8
* Add makefile for csourcesdef2015-03-121-0/+5
* Make *.sh files executabledef2015-03-121-0/+3
* Cleaned up T/P names.Hans Raaf2015-02-191-31/+31
* Happy new year!Guillaume Gelin2015-01-061-2/+2
* niminst: use project-version for the zip fileAraq2014-12-291-2/+2
* fixes #1646Araq2014-11-101-1/+1
* Merge branch 'devel' into bigbreakAraq2014-10-201-11/+38
|\
| * niminst: source based installation works againAraq2014-10-181-1/+1
| * niminst supports NSISAraq2014-10-171-10/+37
* | Merge branch 'devel' into bigbreakAraq2014-10-131-4/+4
|\|
| * zipfile generation works againAraq2014-10-121-4/+4
* | posix.nim compiles againAraq2014-08-291-9/+9
|/
* resolved conflicts with masterAraq2014-01-181-5/+5
|\
| * Rename C sources dir to c_code.Dominik Picheta2014-01-121-5/+5
* | case consistency: niminstAraq2013-12-291-9/+9
* | case consistency part 5Araq2013-12-281-3/+3
|/
* Use quoteShell in stdlib, where appropriate.Michał Zieliński2013-12-111-3/+2
* niminst: slashify was a stupid ideaAraq2013-10-061-7/+7
* fixes for niminstAraq2013-09-281-3/+5
* examples from the talk part of test suiteAraq2013-09-271-1/+4
* support for multiple modules of the same name; niminst supports 'platforms'; ...Araq2013-09-241-4/+35
* fixes #582Araq2013-09-011-4/+19
* fixes #578Araq2013-08-301-11/+11
* Modified the behaviour of the build scripts to accommodate new C sourcesDominik Picheta2013-08-041-10/+17
* Separate out install/uninstall script generationAlain Kalker2013-03-171-4/+12
* Removes executable bit for text files.Grzegorz Adam Hankiewicz2013-03-161-0/+0
* small bugfixes; reactivated tests/compileAraq2012-09-111-1/+1
* don't take into account the user config file when building sourcesZahary Karadjov2012-06-141-1/+1
* enforcing gcc code generation for koch csource; proper C sources for WindowsZahary Karadjov2012-03-201-1/+1
* win64 is a supported target; bugfix: nimrod c -r on windows; stdlib uses wid...Araq2012-03-041-3/+7
* niminst is now able to create build files for debhelper so that .deb packages...dom962012-02-161-2/+90
* niminst: bugfixes; documentation changesAraq2012-01-151-0/+7
* niminst: diverse improvements; fixes #80Araq2012-01-131-0/+425
17-02-06 22:06:32 +0100 committer Araq <rumpf_a@web.de> 2017-02-06 22:06:52 +0100 finish tool improvements' href='/ahoang/Nim/commit/tools/finish.nim?h=devel&id=25fb5be0cb7c59a561afc68aa33370799b060859'>25fb5be0c ^
e6ff6dd9c ^
25fb5be0c ^



e6ff6dd9c ^

25fb5be0c ^


e6ff6dd9c ^
4134240b4 ^


















fb3b5bc5a ^
e6ff6dd9c ^




fb3b5bc5a ^
e6ff6dd9c ^


fb3b5bc5a ^
e6ff6dd9c ^







fb3b5bc5a ^
e6ff6dd9c ^
33ebf3e5f ^



e6ff6dd9c ^

fb3b5bc5a ^


e6ff6dd9c ^




7cea3b6a3 ^
e6ff6dd9c ^


4134240b4 ^
e6ff6dd9c ^
fb3b5bc5a ^


e142f4c37 ^
fb3b5bc5a ^
7cea3b6a3 ^
e216e0deb ^

ca42406df ^




c8ae7164e ^


ca42406df ^




e216e0deb ^












e6ff6dd9c ^
























ca42406df ^



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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280