-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSLiM Stack Installer.nsi
2357 lines (2319 loc) · 201 KB
/
SLiM Stack Installer.nsi
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
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
############################################################################################
# NSIS Installation Script created by NSIS Quick Setup Script Generator v1.09.18
# Entirely Edited with NullSoft Scriptable Installation System
# by Vlasis K. Barkas aka Red Wine [email protected] Sep 2006
############################################################################################
!define APP_NAME "SLiM Stack"
!define COMP_NAME "Orsa Studio"
!define WEB_SITE "http://www.orsa-studio.com/"
!define VERSION "00.00.00.01"
!define COPYRIGHT "Orsa Studio © 2010"
!define DESCRIPTION "Application"
!define LICENSE_TXT "License.txt"
!define INSTALLER_NAME "SLiM Stack Installer.exe"
!define MAIN_APP_EXE "SLiMStack.exe"
!define INSTALL_TYPE "SetShellVarContext all"
!define REG_ROOT "HKLM"
!define REG_APP_PATH "Software\Microsoft\Windows\CurrentVersion\App Paths\${MAIN_APP_EXE}"
!define UNINSTALL_PATH "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APP_NAME}"
######################################################################
VIProductVersion "${VERSION}"
VIAddVersionKey "ProductName" "${APP_NAME}"
VIAddVersionKey "CompanyName" "${COMP_NAME}"
VIAddVersionKey "LegalCopyright" "${COPYRIGHT}"
VIAddVersionKey "FileDescription" "${DESCRIPTION}"
VIAddVersionKey "FileVersion" "${VERSION}"
######################################################################
SetCompressor ZLIB
Name "${APP_NAME}"
Caption "${APP_NAME}"
OutFile "${INSTALLER_NAME}"
BrandingText "${APP_NAME}"
XPStyle on
InstallDirRegKey "${REG_ROOT}" "${REG_APP_PATH}" ""
InstallDir "$PROGRAMFILES\SLiM Stack"
######################################################################
!include "MUI.nsh"
!define MUI_ABORTWARNING
!define MUI_UNABORTWARNING
!insertmacro MUI_PAGE_WELCOME
!ifdef LICENSE_TXT
!insertmacro MUI_PAGE_LICENSE "${LICENSE_TXT}"
!endif
!ifdef REG_START_MENU
!define MUI_STARTMENUPAGE_NODISABLE
!define MUI_STARTMENUPAGE_DEFAULTFOLDER "SLiM Stack"
!define MUI_STARTMENUPAGE_REGISTRY_ROOT "${REG_ROOT}"
!define MUI_STARTMENUPAGE_REGISTRY_KEY "${UNINSTALL_PATH}"
!define MUI_STARTMENUPAGE_REGISTRY_VALUENAME "${REG_START_MENU}"
!insertmacro MUI_PAGE_STARTMENU Application $SM_Folder
!endif
!insertmacro MUI_PAGE_INSTFILES
!define MUI_FINISHPAGE_RUN "$INSTDIR\${MAIN_APP_EXE}"
!insertmacro MUI_PAGE_FINISH
!insertmacro MUI_UNPAGE_CONFIRM
!insertmacro MUI_UNPAGE_INSTFILES
!insertmacro MUI_UNPAGE_FINISH
!insertmacro MUI_LANGUAGE "English"
######################################################################
Section -MainProgram
${INSTALL_TYPE}
SetOverwrite ifnewer
SetOutPath "$INSTDIR"
File "C:\home\projects\SLiMStack\launch4j.cfg.xml"
File "C:\home\projects\SLiMStack\License.txt"
File "C:\home\projects\SLiMStack\SLiMStack.exe"
File "C:\home\projects\SLiMStack\SLiMStack.iml"
File "C:\home\projects\SLiMStack\slimstack.ini"
File "C:\home\projects\SLiMStack\slimstack.properties"
SetOutPath "$INSTDIR\src"
File "C:\home\projects\SLiMStack\src\.keep"
SetOutPath "$INSTDIR\src\META-INF"
File "C:\home\projects\SLiMStack\src\META-INF\MANIFEST.MF"
SetOutPath "$INSTDIR\src\com\orsa\slimstack\runner"
File "C:\home\projects\SLiMStack\src\com\orsa\slimstack\runner\CyclicCharBuffer.java"
File "C:\home\projects\SLiMStack\src\com\orsa\slimstack\runner\DestroyProcessRunner.java"
File "C:\home\projects\SLiMStack\src\com\orsa\slimstack\runner\MulticastPipe.java"
File "C:\home\projects\SLiMStack\src\com\orsa\slimstack\runner\OutputReader.java"
File "C:\home\projects\SLiMStack\src\com\orsa\slimstack\runner\ProcessRunner.java"
File "C:\home\projects\SLiMStack\src\com\orsa\slimstack\runner\ReaderToWriterCopier.java"
File "C:\home\projects\SLiMStack\src\com\orsa\slimstack\runner\SbtRunner.java"
SetOutPath "$INSTDIR\src\com\orsa\slimstack\app"
File "C:\home\projects\SLiMStack\src\com\orsa\slimstack\app\Console.java"
File "C:\home\projects\SLiMStack\src\com\orsa\slimstack\app\EditorFrame.java.txt"
File "C:\home\projects\SLiMStack\src\com\orsa\slimstack\app\ImagePanel.java"
File "C:\home\projects\SLiMStack\src\com\orsa\slimstack\app\LinkLabel.java"
File "C:\home\projects\SLiMStack\src\com\orsa\slimstack\app\MongoDBObjectBuilder.form"
File "C:\home\projects\SLiMStack\src\com\orsa\slimstack\app\MongoDBObjectBuilder.java"
File "C:\home\projects\SLiMStack\src\com\orsa\slimstack\app\QueryPortInUse.java"
File "C:\home\projects\SLiMStack\src\com\orsa\slimstack\app\ReaderInputStream.java"
File "C:\home\projects\SLiMStack\src\com\orsa\slimstack\app\RunApache.java"
File "C:\home\projects\SLiMStack\src\com\orsa\slimstack\app\RunMongodb.java"
File "C:\home\projects\SLiMStack\src\com\orsa\slimstack\app\SLiMStack.java"
File "C:\home\projects\SLiMStack\src\com\orsa\slimstack\app\SLiMStackUI.form"
File "C:\home\projects\SLiMStack\src\com\orsa\slimstack\app\SLiMStackUI.java"
File "C:\home\projects\SLiMStack\src\com\orsa\slimstack\app\TestTabs.form"
File "C:\home\projects\SLiMStack\src\com\orsa\slimstack\app\TestTabs.java"
File "C:\home\projects\SLiMStack\src\com\orsa\slimstack\app\WindowsUtils.java"
SetOutPath "$INSTDIR\php\php-5.3.3-Win32-VC9-x86"
File "C:\home\projects\SLiMStack\php\php-5.3.3-Win32-VC9-x86\glib-2.dll"
File "C:\home\projects\SLiMStack\php\php-5.3.3-Win32-VC9-x86\gmodule-2.dll"
File "C:\home\projects\SLiMStack\php\php-5.3.3-Win32-VC9-x86\go-pear.bat"
File "C:\home\projects\SLiMStack\php\php-5.3.3-Win32-VC9-x86\icudt38.dll"
File "C:\home\projects\SLiMStack\php\php-5.3.3-Win32-VC9-x86\icuin38.dll"
File "C:\home\projects\SLiMStack\php\php-5.3.3-Win32-VC9-x86\icuio38.dll"
File "C:\home\projects\SLiMStack\php\php-5.3.3-Win32-VC9-x86\icule38.dll"
File "C:\home\projects\SLiMStack\php\php-5.3.3-Win32-VC9-x86\iculx38.dll"
File "C:\home\projects\SLiMStack\php\php-5.3.3-Win32-VC9-x86\icutest.dll"
File "C:\home\projects\SLiMStack\php\php-5.3.3-Win32-VC9-x86\icutu38.dll"
File "C:\home\projects\SLiMStack\php\php-5.3.3-Win32-VC9-x86\icuuc38.dll"
File "C:\home\projects\SLiMStack\php\php-5.3.3-Win32-VC9-x86\install.txt"
File "C:\home\projects\SLiMStack\php\php-5.3.3-Win32-VC9-x86\libeay32.dll"
File "C:\home\projects\SLiMStack\php\php-5.3.3-Win32-VC9-x86\libenchant.dll"
File "C:\home\projects\SLiMStack\php\php-5.3.3-Win32-VC9-x86\libenchant_ispell.dll"
File "C:\home\projects\SLiMStack\php\php-5.3.3-Win32-VC9-x86\libenchant_myspell.dll"
File "C:\home\projects\SLiMStack\php\php-5.3.3-Win32-VC9-x86\libpq.dll"
File "C:\home\projects\SLiMStack\php\php-5.3.3-Win32-VC9-x86\libsasl.dll"
File "C:\home\projects\SLiMStack\php\php-5.3.3-Win32-VC9-x86\license.txt"
File "C:\home\projects\SLiMStack\php\php-5.3.3-Win32-VC9-x86\news.txt"
File "C:\home\projects\SLiMStack\php\php-5.3.3-Win32-VC9-x86\phar.phar.bat"
File "C:\home\projects\SLiMStack\php\php-5.3.3-Win32-VC9-x86\pharcommand.phar"
File "C:\home\projects\SLiMStack\php\php-5.3.3-Win32-VC9-x86\php-cgi.exe"
File "C:\home\projects\SLiMStack\php\php-5.3.3-Win32-VC9-x86\php-win.exe"
File "C:\home\projects\SLiMStack\php\php-5.3.3-Win32-VC9-x86\php.exe"
File "C:\home\projects\SLiMStack\php\php-5.3.3-Win32-VC9-x86\php.gif"
File "C:\home\projects\SLiMStack\php\php-5.3.3-Win32-VC9-x86\php.ini"
File "C:\home\projects\SLiMStack\php\php-5.3.3-Win32-VC9-x86\php.ini-development"
File "C:\home\projects\SLiMStack\php\php-5.3.3-Win32-VC9-x86\php.ini-production"
File "C:\home\projects\SLiMStack\php\php-5.3.3-Win32-VC9-x86\php5apache2_2.dll"
File "C:\home\projects\SLiMStack\php\php-5.3.3-Win32-VC9-x86\php5apache2_2_filter.dll"
File "C:\home\projects\SLiMStack\php\php-5.3.3-Win32-VC9-x86\php5embed.lib"
File "C:\home\projects\SLiMStack\php\php-5.3.3-Win32-VC9-x86\php5nsapi.dll"
File "C:\home\projects\SLiMStack\php\php-5.3.3-Win32-VC9-x86\php5ts.dll"
File "C:\home\projects\SLiMStack\php\php-5.3.3-Win32-VC9-x86\pws-php5cgi.reg"
File "C:\home\projects\SLiMStack\php\php-5.3.3-Win32-VC9-x86\pws-php5isapi.reg"
File "C:\home\projects\SLiMStack\php\php-5.3.3-Win32-VC9-x86\readme-redist-bins.txt"
File "C:\home\projects\SLiMStack\php\php-5.3.3-Win32-VC9-x86\snapshot.txt"
File "C:\home\projects\SLiMStack\php\php-5.3.3-Win32-VC9-x86\ssleay32.dll"
SetOutPath "$INSTDIR\php\php-5.3.3-Win32-VC9-x86\PEAR"
File "C:\home\projects\SLiMStack\php\php-5.3.3-Win32-VC9-x86\PEAR\go-pear.phar"
SetOutPath "$INSTDIR\php\php-5.3.3-Win32-VC9-x86\extras\openssl"
File "C:\home\projects\SLiMStack\php\php-5.3.3-Win32-VC9-x86\extras\openssl\openssl.cnf"
File "C:\home\projects\SLiMStack\php\php-5.3.3-Win32-VC9-x86\extras\openssl\openssl.exe"
File "C:\home\projects\SLiMStack\php\php-5.3.3-Win32-VC9-x86\extras\openssl\README-SSL.txt"
SetOutPath "$INSTDIR\php\php-5.3.3-Win32-VC9-x86\ext"
File "C:\home\projects\SLiMStack\php\php-5.3.3-Win32-VC9-x86\ext\php_bz2.dll"
File "C:\home\projects\SLiMStack\php\php-5.3.3-Win32-VC9-x86\ext\php_curl.dll"
File "C:\home\projects\SLiMStack\php\php-5.3.3-Win32-VC9-x86\ext\php_enchant.dll"
File "C:\home\projects\SLiMStack\php\php-5.3.3-Win32-VC9-x86\ext\php_exif.dll"
File "C:\home\projects\SLiMStack\php\php-5.3.3-Win32-VC9-x86\ext\php_fileinfo.dll"
File "C:\home\projects\SLiMStack\php\php-5.3.3-Win32-VC9-x86\ext\php_gd2.dll"
File "C:\home\projects\SLiMStack\php\php-5.3.3-Win32-VC9-x86\ext\php_gettext.dll"
File "C:\home\projects\SLiMStack\php\php-5.3.3-Win32-VC9-x86\ext\php_gmp.dll"
File "C:\home\projects\SLiMStack\php\php-5.3.3-Win32-VC9-x86\ext\php_imap.dll"
File "C:\home\projects\SLiMStack\php\php-5.3.3-Win32-VC9-x86\ext\php_intl.dll"
File "C:\home\projects\SLiMStack\php\php-5.3.3-Win32-VC9-x86\ext\php_ldap.dll"
File "C:\home\projects\SLiMStack\php\php-5.3.3-Win32-VC9-x86\ext\php_mbstring.dll"
File "C:\home\projects\SLiMStack\php\php-5.3.3-Win32-VC9-x86\ext\php_mongo.dll"
File "C:\home\projects\SLiMStack\php\php-5.3.3-Win32-VC9-x86\ext\php_mysql.dll"
File "C:\home\projects\SLiMStack\php\php-5.3.3-Win32-VC9-x86\ext\php_mysqli.dll"
File "C:\home\projects\SLiMStack\php\php-5.3.3-Win32-VC9-x86\ext\php_oci8.dll"
File "C:\home\projects\SLiMStack\php\php-5.3.3-Win32-VC9-x86\ext\php_oci8_11g.dll"
File "C:\home\projects\SLiMStack\php\php-5.3.3-Win32-VC9-x86\ext\php_openssl.dll"
File "C:\home\projects\SLiMStack\php\php-5.3.3-Win32-VC9-x86\ext\php_pdo_mysql.dll"
File "C:\home\projects\SLiMStack\php\php-5.3.3-Win32-VC9-x86\ext\php_pdo_oci.dll"
File "C:\home\projects\SLiMStack\php\php-5.3.3-Win32-VC9-x86\ext\php_pdo_odbc.dll"
File "C:\home\projects\SLiMStack\php\php-5.3.3-Win32-VC9-x86\ext\php_pdo_pgsql.dll"
File "C:\home\projects\SLiMStack\php\php-5.3.3-Win32-VC9-x86\ext\php_pdo_sqlite.dll"
File "C:\home\projects\SLiMStack\php\php-5.3.3-Win32-VC9-x86\ext\php_pgsql.dll"
File "C:\home\projects\SLiMStack\php\php-5.3.3-Win32-VC9-x86\ext\php_shmop.dll"
File "C:\home\projects\SLiMStack\php\php-5.3.3-Win32-VC9-x86\ext\php_snmp.dll"
File "C:\home\projects\SLiMStack\php\php-5.3.3-Win32-VC9-x86\ext\php_soap.dll"
File "C:\home\projects\SLiMStack\php\php-5.3.3-Win32-VC9-x86\ext\php_sockets.dll"
File "C:\home\projects\SLiMStack\php\php-5.3.3-Win32-VC9-x86\ext\php_sqlite.dll"
File "C:\home\projects\SLiMStack\php\php-5.3.3-Win32-VC9-x86\ext\php_sqlite3.dll"
File "C:\home\projects\SLiMStack\php\php-5.3.3-Win32-VC9-x86\ext\php_tidy.dll"
File "C:\home\projects\SLiMStack\php\php-5.3.3-Win32-VC9-x86\ext\php_xmlrpc.dll"
File "C:\home\projects\SLiMStack\php\php-5.3.3-Win32-VC9-x86\ext\php_xsl.dll"
SetOutPath "$INSTDIR\php\php-5.3.3-Win32-VC9-x86\dev"
File "C:\home\projects\SLiMStack\php\php-5.3.3-Win32-VC9-x86\dev\php5ts.lib"
SetOutPath "$INSTDIR\out\test\SLiMStack\com\intellij\uiDesigner\core"
File "C:\home\projects\SLiMStack\out\test\SLiMStack\com\intellij\uiDesigner\core\AbstractLayout.class"
File "C:\home\projects\SLiMStack\out\test\SLiMStack\com\intellij\uiDesigner\core\DimensionInfo.class"
File "C:\home\projects\SLiMStack\out\test\SLiMStack\com\intellij\uiDesigner\core\GridConstraints.class"
File "C:\home\projects\SLiMStack\out\test\SLiMStack\com\intellij\uiDesigner\core\GridLayoutManager.class"
File "C:\home\projects\SLiMStack\out\test\SLiMStack\com\intellij\uiDesigner\core\HorizontalInfo.class"
File "C:\home\projects\SLiMStack\out\test\SLiMStack\com\intellij\uiDesigner\core\LayoutState.class"
File "C:\home\projects\SLiMStack\out\test\SLiMStack\com\intellij\uiDesigner\core\Spacer.class"
File "C:\home\projects\SLiMStack\out\test\SLiMStack\com\intellij\uiDesigner\core\SupportCode$TextWithMnemonic.class"
File "C:\home\projects\SLiMStack\out\test\SLiMStack\com\intellij\uiDesigner\core\SupportCode.class"
File "C:\home\projects\SLiMStack\out\test\SLiMStack\com\intellij\uiDesigner\core\Util.class"
File "C:\home\projects\SLiMStack\out\test\SLiMStack\com\intellij\uiDesigner\core\VerticalInfo.class"
SetOutPath "$INSTDIR\out\production\SystemTrayExample\systemtray"
File "C:\home\projects\SLiMStack\out\production\SystemTrayExample\systemtray\SystemTrayTest$1.class"
File "C:\home\projects\SLiMStack\out\production\SystemTrayExample\systemtray\SystemTrayTest$2.class"
File "C:\home\projects\SLiMStack\out\production\SystemTrayExample\systemtray\SystemTrayTest$3.class"
File "C:\home\projects\SLiMStack\out\production\SystemTrayExample\systemtray\SystemTrayTest.class"
SetOutPath "$INSTDIR\out\production\SLiMStack\com\orsa\slimstack\runner"
File "C:\home\projects\SLiMStack\out\production\SLiMStack\com\orsa\slimstack\runner\CyclicCharBuffer.class"
File "C:\home\projects\SLiMStack\out\production\SLiMStack\com\orsa\slimstack\runner\DestroyProcessRunner.class"
File "C:\home\projects\SLiMStack\out\production\SLiMStack\com\orsa\slimstack\runner\MulticastPipe.class"
File "C:\home\projects\SLiMStack\out\production\SLiMStack\com\orsa\slimstack\runner\OutputReader.class"
File "C:\home\projects\SLiMStack\out\production\SLiMStack\com\orsa\slimstack\runner\ProcessRunner.class"
File "C:\home\projects\SLiMStack\out\production\SLiMStack\com\orsa\slimstack\runner\ReaderToWriterCopier.class"
File "C:\home\projects\SLiMStack\out\production\SLiMStack\com\orsa\slimstack\runner\SbtRunner.class"
SetOutPath "$INSTDIR\out\production\SLiMStack\com\orsa\slimstack\app"
File "C:\home\projects\SLiMStack\out\production\SLiMStack\com\orsa\slimstack\app\Console.class"
File "C:\home\projects\SLiMStack\out\production\SLiMStack\com\orsa\slimstack\app\ImagePanel.class"
File "C:\home\projects\SLiMStack\out\production\SLiMStack\com\orsa\slimstack\app\LinkLabel.class"
File "C:\home\projects\SLiMStack\out\production\SLiMStack\com\orsa\slimstack\app\MongoDBObjectBuilder$1.class"
File "C:\home\projects\SLiMStack\out\production\SLiMStack\com\orsa\slimstack\app\MongoDBObjectBuilder$2.class"
File "C:\home\projects\SLiMStack\out\production\SLiMStack\com\orsa\slimstack\app\MongoDBObjectBuilder$3.class"
File "C:\home\projects\SLiMStack\out\production\SLiMStack\com\orsa\slimstack\app\MongoDBObjectBuilder$4.class"
File "C:\home\projects\SLiMStack\out\production\SLiMStack\com\orsa\slimstack\app\MongoDBObjectBuilder.class"
File "C:\home\projects\SLiMStack\out\production\SLiMStack\com\orsa\slimstack\app\QueryPortInUse.class"
File "C:\home\projects\SLiMStack\out\production\SLiMStack\com\orsa\slimstack\app\ReaderInputStream.class"
File "C:\home\projects\SLiMStack\out\production\SLiMStack\com\orsa\slimstack\app\RunApache$1.class"
File "C:\home\projects\SLiMStack\out\production\SLiMStack\com\orsa\slimstack\app\RunApache$2.class"
File "C:\home\projects\SLiMStack\out\production\SLiMStack\com\orsa\slimstack\app\RunApache.class"
File "C:\home\projects\SLiMStack\out\production\SLiMStack\com\orsa\slimstack\app\RunMongodb$1.class"
File "C:\home\projects\SLiMStack\out\production\SLiMStack\com\orsa\slimstack\app\RunMongodb$2.class"
File "C:\home\projects\SLiMStack\out\production\SLiMStack\com\orsa\slimstack\app\RunMongodb.class"
File "C:\home\projects\SLiMStack\out\production\SLiMStack\com\orsa\slimstack\app\SLiMStack$1.class"
File "C:\home\projects\SLiMStack\out\production\SLiMStack\com\orsa\slimstack\app\SLiMStack$2.class"
File "C:\home\projects\SLiMStack\out\production\SLiMStack\com\orsa\slimstack\app\SLiMStack$3.class"
File "C:\home\projects\SLiMStack\out\production\SLiMStack\com\orsa\slimstack\app\SLiMStack$4.class"
File "C:\home\projects\SLiMStack\out\production\SLiMStack\com\orsa\slimstack\app\SLiMStack.class"
File "C:\home\projects\SLiMStack\out\production\SLiMStack\com\orsa\slimstack\app\SLiMStackUI$1.class"
File "C:\home\projects\SLiMStack\out\production\SLiMStack\com\orsa\slimstack\app\SLiMStackUI$2.class"
File "C:\home\projects\SLiMStack\out\production\SLiMStack\com\orsa\slimstack\app\SLiMStackUI$3.class"
File "C:\home\projects\SLiMStack\out\production\SLiMStack\com\orsa\slimstack\app\SLiMStackUI$4.class"
File "C:\home\projects\SLiMStack\out\production\SLiMStack\com\orsa\slimstack\app\SLiMStackUI$5.class"
File "C:\home\projects\SLiMStack\out\production\SLiMStack\com\orsa\slimstack\app\SLiMStackUI$6.class"
File "C:\home\projects\SLiMStack\out\production\SLiMStack\com\orsa\slimstack\app\SLiMStackUI$7.class"
File "C:\home\projects\SLiMStack\out\production\SLiMStack\com\orsa\slimstack\app\SLiMStackUI$8.class"
File "C:\home\projects\SLiMStack\out\production\SLiMStack\com\orsa\slimstack\app\SLiMStackUI$ReaderThread.class"
File "C:\home\projects\SLiMStack\out\production\SLiMStack\com\orsa\slimstack\app\SLiMStackUI$RunSbt.class"
File "C:\home\projects\SLiMStack\out\production\SLiMStack\com\orsa\slimstack\app\SLiMStackUI$TextAreaOutput.class"
File "C:\home\projects\SLiMStack\out\production\SLiMStack\com\orsa\slimstack\app\SLiMStackUI$UpdateProgress.class"
File "C:\home\projects\SLiMStack\out\production\SLiMStack\com\orsa\slimstack\app\SLiMStackUI.class"
File "C:\home\projects\SLiMStack\out\production\SLiMStack\com\orsa\slimstack\app\TestTabs.class"
File "C:\home\projects\SLiMStack\out\production\SLiMStack\com\orsa\slimstack\app\WindowsUtils.class"
SetOutPath "$INSTDIR\out\production\SLiMStack\com\intellij\uiDesigner\core"
File "C:\home\projects\SLiMStack\out\production\SLiMStack\com\intellij\uiDesigner\core\AbstractLayout.class"
File "C:\home\projects\SLiMStack\out\production\SLiMStack\com\intellij\uiDesigner\core\DimensionInfo.class"
File "C:\home\projects\SLiMStack\out\production\SLiMStack\com\intellij\uiDesigner\core\GridConstraints.class"
File "C:\home\projects\SLiMStack\out\production\SLiMStack\com\intellij\uiDesigner\core\GridLayoutManager.class"
File "C:\home\projects\SLiMStack\out\production\SLiMStack\com\intellij\uiDesigner\core\HorizontalInfo.class"
File "C:\home\projects\SLiMStack\out\production\SLiMStack\com\intellij\uiDesigner\core\LayoutState.class"
File "C:\home\projects\SLiMStack\out\production\SLiMStack\com\intellij\uiDesigner\core\Spacer.class"
File "C:\home\projects\SLiMStack\out\production\SLiMStack\com\intellij\uiDesigner\core\SupportCode$TextWithMnemonic.class"
File "C:\home\projects\SLiMStack\out\production\SLiMStack\com\intellij\uiDesigner\core\SupportCode.class"
File "C:\home\projects\SLiMStack\out\production\SLiMStack\com\intellij\uiDesigner\core\Util.class"
File "C:\home\projects\SLiMStack\out\production\SLiMStack\com\intellij\uiDesigner\core\VerticalInfo.class"
SetOutPath "$INSTDIR\mongodb\mongodb-win32-i386-1.6.5"
File "C:\home\projects\SLiMStack\mongodb\mongodb-win32-i386-1.6.5\GNU-AGPL-3.0"
File "C:\home\projects\SLiMStack\mongodb\mongodb-win32-i386-1.6.5\README"
File "C:\home\projects\SLiMStack\mongodb\mongodb-win32-i386-1.6.5\THIRD-PARTY-NOTICES"
SetOutPath "$INSTDIR\mongodb\mongodb-win32-i386-1.6.5\bin"
File "C:\home\projects\SLiMStack\mongodb\mongodb-win32-i386-1.6.5\bin\bsondump.exe"
File "C:\home\projects\SLiMStack\mongodb\mongodb-win32-i386-1.6.5\bin\mongo.exe"
File "C:\home\projects\SLiMStack\mongodb\mongodb-win32-i386-1.6.5\bin\mongod.exe"
File "C:\home\projects\SLiMStack\mongodb\mongodb-win32-i386-1.6.5\bin\mongodump.exe"
File "C:\home\projects\SLiMStack\mongodb\mongodb-win32-i386-1.6.5\bin\mongoexport.exe"
File "C:\home\projects\SLiMStack\mongodb\mongodb-win32-i386-1.6.5\bin\mongofiles.exe"
File "C:\home\projects\SLiMStack\mongodb\mongodb-win32-i386-1.6.5\bin\mongoimport.exe"
File "C:\home\projects\SLiMStack\mongodb\mongodb-win32-i386-1.6.5\bin\mongorestore.exe"
File "C:\home\projects\SLiMStack\mongodb\mongodb-win32-i386-1.6.5\bin\mongos.exe"
File "C:\home\projects\SLiMStack\mongodb\mongodb-win32-i386-1.6.5\bin\mongostat.exe"
SetOutPath "$INSTDIR\mongodb\database"
File "C:\home\projects\SLiMStack\mongodb\database\.keep"
SetOutPath "$INSTDIR\META-INF"
File "C:\home\projects\SLiMStack\META-INF\MANIFEST.MF"
SetOutPath "$INSTDIR\liftweb"
File "C:\home\projects\SLiMStack\liftweb\.gitignore"
SetOutPath "$INSTDIR\liftweb\target"
File "C:\home\projects\SLiMStack\liftweb\target\.history"
SetOutPath "$INSTDIR\liftweb\target\scala_2.8.1\webapp"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\index.html"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\pet.html"
SetOutPath "$INSTDIR\liftweb\target\scala_2.8.1\webapp\WEB-INF"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\web.xml"
SetOutPath "$INSTDIR\liftweb\target\scala_2.8.1\webapp\WEB-INF\lib"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\lib\activation-1.1.jar"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\lib\commons-codec-1.4.jar"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\lib\commons-fileupload-1.2.2.jar"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\lib\commons-logging-1.1.1.jar"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\lib\commons-pool-1.4.jar"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\lib\htmlparser-1.2.1.jar"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\lib\jFastCGI-2.0.jar"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\lib\joda-time-1.6.2.jar"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\lib\lift-actor_2.8.1-2.2-RC1.jar"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\lib\lift-common_2.8.1-2.2-RC1.jar"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\lib\lift-json_2.8.1-2.2-RC1.jar"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\lib\lift-mapper_2.8.1-2.2-RC1.jar"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\lib\lift-mongodb-record_2.8.1-2.2-RC1.jar"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\lib\lift-mongodb_2.8.1-2.2-RC1.jar"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\lib\lift-proto_2.8.1-2.2-RC1.jar"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\lib\lift-record_2.8.1-2.2-RC1.jar"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\lib\lift-util_2.8.1-2.2-RC1.jar"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\lib\lift-webkit_2.8.1-2.2-RC1.jar"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\lib\logback-classic-0.9.26.jar"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\lib\logback-core-0.9.26.jar"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\lib\mail-1.4.1.jar"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\lib\mongo-java-driver-2.2.jar"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\lib\paranamer-2.0.jar"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\lib\scala-library.jar"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\lib\slf4j-api-1.6.1.jar"
SetOutPath "$INSTDIR\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\props"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\props\default.props"
SetOutPath "$INSTDIR\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\snippet"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\snippet\HelloWorld.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\snippet\PetSnippet$$anonfun$1$$anonfun$apply$2.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\snippet\PetSnippet$$anonfun$1$$anonfun$apply$3.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\snippet\PetSnippet$$anonfun$1$$anonfun$apply$4.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\snippet\PetSnippet$$anonfun$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\snippet\PetSnippet$$anonfun$editForm$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\snippet\PetSnippet$$anonfun$editForm$2.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\snippet\PetSnippet$$anonfun$editForm$3.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\snippet\PetSnippet$$anonfun$editForm$4.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\snippet\PetSnippet$$anonfun$showAll$1$$anonfun$apply$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\snippet\PetSnippet$$anonfun$showAll$1$$anonfun$apply$5.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\snippet\PetSnippet$$anonfun$showAll$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\snippet\PetSnippet.class"
SetOutPath "$INSTDIR\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\model"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\model\Pet$.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\model\Pet$age$.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\model\Pet$description$$anonfun$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\model\Pet$description$.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\model\Pet$name$.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\model\Pet.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\model\User$$anonfun$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\model\User$$anonfun$2.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\model\User$$anonfun$3.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\model\User$$anonfun$4.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\model\User$$anonfun$5.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\model\User$$anonfun$localForm$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\model\User$.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\model\User.class"
SetOutPath "$INSTDIR\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\DependencyFactory$.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\DependencyFactory$time$$anonfun$$init$$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\DependencyFactory$time$.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\DependencyFactory.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\MegaProtoUser$class.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\MegaProtoUser$validated$.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\MegaProtoUser.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\MetaMegaProtoUser$$anon$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\MetaMegaProtoUser$$anonfun$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\MetaMegaProtoUser$$anonfun$10.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\MetaMegaProtoUser$$anonfun$11$$anonfun$apply$3.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\MetaMegaProtoUser$$anonfun$11$$anonfun$apply$4.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\MetaMegaProtoUser$$anonfun$11.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\MetaMegaProtoUser$$anonfun$12.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\MetaMegaProtoUser$$anonfun$13.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\MetaMegaProtoUser$$anonfun$14.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\MetaMegaProtoUser$$anonfun$15.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\MetaMegaProtoUser$$anonfun$16.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\MetaMegaProtoUser$$anonfun$17$$anonfun$apply$5.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\MetaMegaProtoUser$$anonfun$17$$anonfun$apply$6.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\MetaMegaProtoUser$$anonfun$17.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\MetaMegaProtoUser$$anonfun$18.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\MetaMegaProtoUser$$anonfun$19.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\MetaMegaProtoUser$$anonfun$2.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\MetaMegaProtoUser$$anonfun$20.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\MetaMegaProtoUser$$anonfun$3.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\MetaMegaProtoUser$$anonfun$4.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\MetaMegaProtoUser$$anonfun$5.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\MetaMegaProtoUser$$anonfun$7.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\MetaMegaProtoUser$$anonfun$8.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\MetaMegaProtoUser$$anonfun$9.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\MetaMegaProtoUser$$anonfun$changePassword$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\MetaMegaProtoUser$$anonfun$changePassword$2.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\MetaMegaProtoUser$$anonfun$changePassword$3.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\MetaMegaProtoUser$$anonfun$changePasswordMenuLoc$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\MetaMegaProtoUser$$anonfun$createUserMenuLoc$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\MetaMegaProtoUser$$anonfun$editUserMenuLoc$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\MetaMegaProtoUser$$anonfun$gd10$1$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\MetaMegaProtoUser$$anonfun$innerEdit$1$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\MetaMegaProtoUser$$anonfun$innerSignup$1$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\MetaMegaProtoUser$$anonfun$localForm$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\MetaMegaProtoUser$$anonfun$localForm$2$$anonfun$apply$9.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\MetaMegaProtoUser$$anonfun$localForm$2.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\MetaMegaProtoUser$$anonfun$loggedIn_$qmark$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\MetaMegaProtoUser$$anonfun$login$1$$anonfun$apply$8.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\MetaMegaProtoUser$$anonfun$login$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\MetaMegaProtoUser$$anonfun$loginFirst$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\MetaMegaProtoUser$$anonfun$loginFirst$2$$anonfun$apply$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\MetaMegaProtoUser$$anonfun$loginFirst$2.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\MetaMegaProtoUser$$anonfun$loginMenuLoc$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\MetaMegaProtoUser$$anonfun$logoutMenuLoc$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\MetaMegaProtoUser$$anonfun$logUserIn$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\MetaMegaProtoUser$$anonfun$logUserOut$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\MetaMegaProtoUser$$anonfun$logUserOut$2.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\MetaMegaProtoUser$$anonfun$lostPassword$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\MetaMegaProtoUser$$anonfun$lostPasswordMenuLoc$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\MetaMegaProtoUser$$anonfun$passwordReset$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\MetaMegaProtoUser$$anonfun$passwordReset$2.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\MetaMegaProtoUser$$anonfun$resetPasswordMenuLoc$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\MetaMegaProtoUser$$anonfun$sendPasswordReset$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\MetaMegaProtoUser$$anonfun$sendPasswordReset$2.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\MetaMegaProtoUser$$anonfun$sendValidationEmail$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\MetaMegaProtoUser$$anonfun$sitemap$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\MetaMegaProtoUser$$anonfun$snarfLastItem$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\MetaMegaProtoUser$$anonfun$snarfLastItem$2.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\MetaMegaProtoUser$$anonfun$superUser_$qmark$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\MetaMegaProtoUser$$anonfun$superUser_$qmark$2.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\MetaMegaProtoUser$$anonfun$testEdit$1$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\MetaMegaProtoUser$$anonfun$testLoggedIn$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\MetaMegaProtoUser$$anonfun$testLogginIn$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\MetaMegaProtoUser$$anonfun$testLogginIn$2.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\MetaMegaProtoUser$$anonfun$testSignup$1$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\MetaMegaProtoUser$$anonfun$testSuperUser$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\MetaMegaProtoUser$$anonfun$testSuperUser$2.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\MetaMegaProtoUser$$anonfun$userMenu$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\MetaMegaProtoUser$$anonfun$userMenu$2.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\MetaMegaProtoUser$$anonfun$validateUserMenuLoc$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\MetaMegaProtoUser$$anonfun$wrapIt$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\MetaMegaProtoUser$class.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\MetaMegaProtoUser$curUser$$anonfun$$init$$3$$anonfun$apply$7.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\MetaMegaProtoUser$curUser$$anonfun$$init$$3.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\MetaMegaProtoUser$curUser$.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\MetaMegaProtoUser$curUserId$$anonfun$$init$$2.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\MetaMegaProtoUser$curUserId$.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\MetaMegaProtoUser$editFunc$$anonfun$$init$$5.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\MetaMegaProtoUser$editFunc$.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\MetaMegaProtoUser$loginRedirect$$anonfun$$init$$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\MetaMegaProtoUser$loginRedirect$.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\MetaMegaProtoUser$MenuItem$.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\MetaMegaProtoUser$MenuItem.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\MetaMegaProtoUser$signupFunc$$anonfun$$init$$4.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\MetaMegaProtoUser$signupFunc$.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\MetaMegaProtoUser.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\ProtoUser$class.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\ProtoUser$email$$anonfun$6$$anonfun$apply$2.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\ProtoUser$email$$anonfun$6.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\ProtoUser$email$$anonfun$code$lib$ProtoUser$email$$valUnique$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\ProtoUser$email$$anonfun$code$lib$ProtoUser$email$$valUnique$2.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\ProtoUser$email$.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\ProtoUser$firstName$.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\ProtoUser$lastName$.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\ProtoUser$locale$.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\ProtoUser$password$.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\ProtoUser$superUser$.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\ProtoUser$timezone$.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\lib\ProtoUser.class"
SetOutPath "$INSTDIR\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\db"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\db\SlimstackDemoDB$$anonfun$isMongoRunning$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\db\SlimstackDemoDB$.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\code\db\SlimstackDemoDB.class"
SetOutPath "$INSTDIR\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\bootstrap\liftweb"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\bootstrap\liftweb\Boot$$anonfun$boot$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\bootstrap\liftweb\Boot$$anonfun$boot$2.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\bootstrap\liftweb\Boot$$anonfun$boot$3.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\bootstrap\liftweb\Boot$$anonfun$boot$4.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\bootstrap\liftweb\Boot$$anonfun$boot$5.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\bootstrap\liftweb\Boot$$anonfun$localeCalculator$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\bootstrap\liftweb\Boot$$anonfun$localeCalculator$2.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\bootstrap\liftweb\Boot.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\bootstrap\liftweb\MenuInfo$$anonfun$sitemap$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\bootstrap\liftweb\MenuInfo$$anonfun$sitemap$2.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\bootstrap\liftweb\MenuInfo$$anonfun$sitemap$3.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\bootstrap\liftweb\MenuInfo$.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\WEB-INF\classes\bootstrap\liftweb\MenuInfo.class"
SetOutPath "$INSTDIR\liftweb\target\scala_2.8.1\webapp\templates-hidden"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\templates-hidden\default.html"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\templates-hidden\wizard-all.html"
SetOutPath "$INSTDIR\liftweb\target\scala_2.8.1\webapp\static"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\static\index.html"
SetOutPath "$INSTDIR\liftweb\target\scala_2.8.1\webapp\rockmongo"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\CHANGELOG"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\config.php"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\index.php"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\INSTALL"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\LICENSE"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\README"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\rock.php"
SetOutPath "$INSTDIR\liftweb\target\scala_2.8.1\webapp\rockmongo\js"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\js\collection.js"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\js\jquery-1.4.2.min.js"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\js\jquery-ui-1.8.4.custom.min.js"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\js\jquery.textarea.js"
SetOutPath "$INSTDIR\liftweb\target\scala_2.8.1\webapp\rockmongo\images"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\images\accept.png"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\images\add.png"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\images\arrow_refresh.png"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\images\connect.png"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\images\cross.png"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\images\database.png"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\images\databases.png"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\images\error.png"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\images\exclamation.png"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\images\grid.png"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\images\key.png"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\images\menuitem_hover.png"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\images\page_copy.png"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\images\page_white_delete.png"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\images\page_white_edit.png"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\images\page_white_paintbrush.png"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\images\page_white_swoosh.png"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\images\report.png"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\images\server.png"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\images\submenu_bullet.png"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\images\table.png"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\images\ui-bg_flat_0_aaaaaa_40x100.png"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\images\ui-bg_flat_75_ffffff_40x100.png"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\images\ui-bg_glass_55_fbf9ee_1x400.png"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\images\ui-bg_glass_65_ffffff_1x400.png"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\images\ui-bg_glass_75_dadada_1x400.png"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\images\ui-bg_glass_75_e6e6e6_1x400.png"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\images\ui-bg_glass_95_fef1ec_1x400.png"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\images\ui-bg_highlight-soft_75_cccccc_1x100.png"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\images\ui-icons_222222_256x240.png"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\images\ui-icons_2e83ff_256x240.png"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\images\ui-icons_454545_256x240.png"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\images\ui-icons_888888_256x240.png"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\images\ui-icons_cd0a0a_256x240.png"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\images\ui-icons_ffffff_256x240.png"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\images\world.png"
SetOutPath "$INSTDIR\liftweb\target\scala_2.8.1\webapp\rockmongo\css"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\css\collection.css"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\css\jquery-ui-1.8.4.smoothness.css"
SetOutPath "$INSTDIR\liftweb\target\scala_2.8.1\webapp\rockmongo\app\views\index"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\app\views\index\about.php"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\app\views\index\addUser.php"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\app\views\index\admin.php"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\app\views\index\auth.php"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\app\views\index\collection.php"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\app\views\index\collectionDuplicate.php"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\app\views\index\collectionIndexes.php"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\app\views\index\collectionProps.php"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\app\views\index\collectionRename.php"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\app\views\index\collectionStats.php"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\app\views\index\collectionValidate.php"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\app\views\index\command.php"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\app\views\index\createDatabase.php"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\app\views\index\createIndex.php"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\app\views\index\createRow.php"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\app\views\index\databases.php"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\app\views\index\db.php"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\app\views\index\dbExport.php"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\app\views\index\dbImport.php"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\app\views\index\dbs.php"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\app\views\index\dbTransfer.php"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\app\views\index\dropDatabase.php"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\app\views\index\dropDatabaseResult.php"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\app\views\index\execute.php"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\app\views\index\explainQuery.php"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\app\views\index\footer.php"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\app\views\index\header.php"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\app\views\index\killOp.php"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\app\views\index\login.php"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\app\views\index\modifyRow.php"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\app\views\index\newCollection.php"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\app\views\index\processlist.php"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\app\views\index\profile.php"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\app\views\index\profileLevel.php"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\app\views\index\queryHistory.php"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\app\views\index\removeCollection.php"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\app\views\index\repairDatabase.php"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\app\views\index\replication.php"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\app\views\index\server.php"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\app\views\index\status.php"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\app\views\index\top.php"
SetOutPath "$INSTDIR\liftweb\target\scala_2.8.1\webapp\rockmongo\app\models"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\app\models\MCollection.php"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\app\models\MDb.php"
SetOutPath "$INSTDIR\liftweb\target\scala_2.8.1\webapp\rockmongo\app\lib\page"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\app\lib\page\RPage.php"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\app\lib\page\RPageStyle1.php"
SetOutPath "$INSTDIR\liftweb\target\scala_2.8.1\webapp\rockmongo\app\lib\page\lang"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\app\lib\page\lang\default.php"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\app\lib\page\lang\en.php"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\app\lib\page\lang\en_us.php"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\app\lib\page\lang\zh.php"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\app\lib\page\lang\zh_cn.php"
SetOutPath "$INSTDIR\liftweb\target\scala_2.8.1\webapp\rockmongo\app\lib\mongo"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\app\lib\mongo\RMongo.php"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\app\lib\mongo\RMongoException.php"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\app\lib\mongo\RObject.php"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\app\lib\mongo\RQuery.php"
SetOutPath "$INSTDIR\liftweb\target\scala_2.8.1\webapp\rockmongo\app\lib\mime"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\app\lib\mime\types.php"
SetOutPath "$INSTDIR\liftweb\target\scala_2.8.1\webapp\rockmongo\app\lib\ext"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\app\lib\ext\RExtController.php"
SetOutPath "$INSTDIR\liftweb\target\scala_2.8.1\webapp\rockmongo\app\langs\zh_cn"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\app\langs\zh_cn\message.php"
SetOutPath "$INSTDIR\liftweb\target\scala_2.8.1\webapp\rockmongo\app\langs\pt_br"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\app\langs\pt_br\message.php"
SetOutPath "$INSTDIR\liftweb\target\scala_2.8.1\webapp\rockmongo\app\langs\ja_jp"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\app\langs\ja_jp\message.php"
SetOutPath "$INSTDIR\liftweb\target\scala_2.8.1\webapp\rockmongo\app\langs\fr_fr"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\app\langs\fr_fr\message.php"
SetOutPath "$INSTDIR\liftweb\target\scala_2.8.1\webapp\rockmongo\app\langs\en_us"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\app\langs\en_us\message.php"
SetOutPath "$INSTDIR\liftweb\target\scala_2.8.1\webapp\rockmongo\app\controllers"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\app\controllers\collection.php"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\app\controllers\field.php"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\app\controllers\index.php"
SetOutPath "$INSTDIR\liftweb\target\scala_2.8.1\webapp\rockmongo\app\classes"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\app\classes\BasicController.php"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\app\classes\Services_JSON.php"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\app\classes\VarEval.php"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\rockmongo\app\classes\VarExportor.php"
SetOutPath "$INSTDIR\liftweb\target\scala_2.8.1\webapp\pet"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\pet\edit.html"
SetOutPath "$INSTDIR\liftweb\target\scala_2.8.1\webapp\images"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\images\ajax-loader.gif"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\webapp\images\home.png"
SetOutPath "$INSTDIR\liftweb\target\scala_2.8.1\test-analysis"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\test-analysis\applications"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\test-analysis\dependencies"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\test-analysis\external"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\test-analysis\generated_files"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\test-analysis\hashes"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\test-analysis\tests"
SetOutPath "$INSTDIR\liftweb\target\scala_2.8.1\resources\props"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\resources\props\default.props"
SetOutPath "$INSTDIR\liftweb\target\scala_2.8.1\classes\code\snippet"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\snippet\HelloWorld.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\snippet\PetSnippet$$anonfun$1$$anonfun$apply$2.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\snippet\PetSnippet$$anonfun$1$$anonfun$apply$3.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\snippet\PetSnippet$$anonfun$1$$anonfun$apply$4.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\snippet\PetSnippet$$anonfun$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\snippet\PetSnippet$$anonfun$editForm$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\snippet\PetSnippet$$anonfun$editForm$2.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\snippet\PetSnippet$$anonfun$editForm$3.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\snippet\PetSnippet$$anonfun$editForm$4.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\snippet\PetSnippet$$anonfun$showAll$1$$anonfun$apply$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\snippet\PetSnippet$$anonfun$showAll$1$$anonfun$apply$5.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\snippet\PetSnippet$$anonfun$showAll$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\snippet\PetSnippet.class"
SetOutPath "$INSTDIR\liftweb\target\scala_2.8.1\classes\code\model"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\model\Pet$.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\model\Pet$age$.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\model\Pet$description$$anonfun$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\model\Pet$description$.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\model\Pet$name$.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\model\Pet.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\model\User$$anonfun$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\model\User$$anonfun$2.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\model\User$$anonfun$3.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\model\User$$anonfun$4.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\model\User$$anonfun$5.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\model\User$$anonfun$localForm$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\model\User$.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\model\User.class"
SetOutPath "$INSTDIR\liftweb\target\scala_2.8.1\classes\code\lib"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\DependencyFactory$.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\DependencyFactory$time$$anonfun$$init$$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\DependencyFactory$time$.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\DependencyFactory.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\MegaProtoUser$class.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\MegaProtoUser$validated$.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\MegaProtoUser.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\MetaMegaProtoUser$$anon$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\MetaMegaProtoUser$$anonfun$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\MetaMegaProtoUser$$anonfun$10.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\MetaMegaProtoUser$$anonfun$11$$anonfun$apply$3.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\MetaMegaProtoUser$$anonfun$11$$anonfun$apply$4.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\MetaMegaProtoUser$$anonfun$11.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\MetaMegaProtoUser$$anonfun$12.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\MetaMegaProtoUser$$anonfun$13.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\MetaMegaProtoUser$$anonfun$14.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\MetaMegaProtoUser$$anonfun$15.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\MetaMegaProtoUser$$anonfun$16.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\MetaMegaProtoUser$$anonfun$17$$anonfun$apply$5.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\MetaMegaProtoUser$$anonfun$17$$anonfun$apply$6.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\MetaMegaProtoUser$$anonfun$17.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\MetaMegaProtoUser$$anonfun$18.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\MetaMegaProtoUser$$anonfun$19.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\MetaMegaProtoUser$$anonfun$2.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\MetaMegaProtoUser$$anonfun$20.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\MetaMegaProtoUser$$anonfun$3.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\MetaMegaProtoUser$$anonfun$4.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\MetaMegaProtoUser$$anonfun$5.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\MetaMegaProtoUser$$anonfun$7.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\MetaMegaProtoUser$$anonfun$8.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\MetaMegaProtoUser$$anonfun$9.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\MetaMegaProtoUser$$anonfun$changePassword$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\MetaMegaProtoUser$$anonfun$changePassword$2.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\MetaMegaProtoUser$$anonfun$changePassword$3.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\MetaMegaProtoUser$$anonfun$changePasswordMenuLoc$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\MetaMegaProtoUser$$anonfun$createUserMenuLoc$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\MetaMegaProtoUser$$anonfun$editUserMenuLoc$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\MetaMegaProtoUser$$anonfun$gd10$1$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\MetaMegaProtoUser$$anonfun$innerEdit$1$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\MetaMegaProtoUser$$anonfun$innerSignup$1$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\MetaMegaProtoUser$$anonfun$localForm$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\MetaMegaProtoUser$$anonfun$localForm$2$$anonfun$apply$9.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\MetaMegaProtoUser$$anonfun$localForm$2.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\MetaMegaProtoUser$$anonfun$loggedIn_$qmark$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\MetaMegaProtoUser$$anonfun$login$1$$anonfun$apply$8.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\MetaMegaProtoUser$$anonfun$login$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\MetaMegaProtoUser$$anonfun$loginFirst$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\MetaMegaProtoUser$$anonfun$loginFirst$2$$anonfun$apply$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\MetaMegaProtoUser$$anonfun$loginFirst$2.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\MetaMegaProtoUser$$anonfun$loginMenuLoc$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\MetaMegaProtoUser$$anonfun$logoutMenuLoc$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\MetaMegaProtoUser$$anonfun$logUserIn$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\MetaMegaProtoUser$$anonfun$logUserOut$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\MetaMegaProtoUser$$anonfun$logUserOut$2.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\MetaMegaProtoUser$$anonfun$lostPassword$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\MetaMegaProtoUser$$anonfun$lostPasswordMenuLoc$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\MetaMegaProtoUser$$anonfun$passwordReset$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\MetaMegaProtoUser$$anonfun$passwordReset$2.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\MetaMegaProtoUser$$anonfun$resetPasswordMenuLoc$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\MetaMegaProtoUser$$anonfun$sendPasswordReset$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\MetaMegaProtoUser$$anonfun$sendPasswordReset$2.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\MetaMegaProtoUser$$anonfun$sendValidationEmail$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\MetaMegaProtoUser$$anonfun$sitemap$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\MetaMegaProtoUser$$anonfun$snarfLastItem$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\MetaMegaProtoUser$$anonfun$snarfLastItem$2.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\MetaMegaProtoUser$$anonfun$superUser_$qmark$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\MetaMegaProtoUser$$anonfun$superUser_$qmark$2.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\MetaMegaProtoUser$$anonfun$testEdit$1$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\MetaMegaProtoUser$$anonfun$testLoggedIn$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\MetaMegaProtoUser$$anonfun$testLogginIn$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\MetaMegaProtoUser$$anonfun$testLogginIn$2.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\MetaMegaProtoUser$$anonfun$testSignup$1$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\MetaMegaProtoUser$$anonfun$testSuperUser$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\MetaMegaProtoUser$$anonfun$testSuperUser$2.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\MetaMegaProtoUser$$anonfun$userMenu$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\MetaMegaProtoUser$$anonfun$userMenu$2.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\MetaMegaProtoUser$$anonfun$validateUserMenuLoc$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\MetaMegaProtoUser$$anonfun$wrapIt$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\MetaMegaProtoUser$class.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\MetaMegaProtoUser$curUser$$anonfun$$init$$3$$anonfun$apply$7.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\MetaMegaProtoUser$curUser$$anonfun$$init$$3.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\MetaMegaProtoUser$curUser$.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\MetaMegaProtoUser$curUserId$$anonfun$$init$$2.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\MetaMegaProtoUser$curUserId$.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\MetaMegaProtoUser$editFunc$$anonfun$$init$$5.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\MetaMegaProtoUser$editFunc$.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\MetaMegaProtoUser$loginRedirect$$anonfun$$init$$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\MetaMegaProtoUser$loginRedirect$.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\MetaMegaProtoUser$MenuItem$.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\MetaMegaProtoUser$MenuItem.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\MetaMegaProtoUser$signupFunc$$anonfun$$init$$4.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\MetaMegaProtoUser$signupFunc$.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\MetaMegaProtoUser.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\ProtoUser$class.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\ProtoUser$email$$anonfun$6$$anonfun$apply$2.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\ProtoUser$email$$anonfun$6.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\ProtoUser$email$$anonfun$code$lib$ProtoUser$email$$valUnique$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\ProtoUser$email$$anonfun$code$lib$ProtoUser$email$$valUnique$2.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\ProtoUser$email$.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\ProtoUser$firstName$.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\ProtoUser$lastName$.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\ProtoUser$locale$.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\ProtoUser$password$.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\ProtoUser$superUser$.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\ProtoUser$timezone$.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\lib\ProtoUser.class"
SetOutPath "$INSTDIR\liftweb\target\scala_2.8.1\classes\code\db"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\db\SlimstackDemoDB$$anonfun$isMongoRunning$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\db\SlimstackDemoDB$.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\code\db\SlimstackDemoDB.class"
SetOutPath "$INSTDIR\liftweb\target\scala_2.8.1\classes\bootstrap\liftweb"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\bootstrap\liftweb\Boot$$anonfun$boot$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\bootstrap\liftweb\Boot$$anonfun$boot$2.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\bootstrap\liftweb\Boot$$anonfun$boot$3.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\bootstrap\liftweb\Boot$$anonfun$boot$4.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\bootstrap\liftweb\Boot$$anonfun$boot$5.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\bootstrap\liftweb\Boot$$anonfun$localeCalculator$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\bootstrap\liftweb\Boot$$anonfun$localeCalculator$2.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\bootstrap\liftweb\Boot.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\bootstrap\liftweb\MenuInfo$$anonfun$sitemap$1.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\bootstrap\liftweb\MenuInfo$$anonfun$sitemap$2.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\bootstrap\liftweb\MenuInfo$$anonfun$sitemap$3.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\bootstrap\liftweb\MenuInfo$.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\classes\bootstrap\liftweb\MenuInfo.class"
SetOutPath "$INSTDIR\liftweb\target\scala_2.8.1\analysis"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\analysis\applications"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\analysis\dependencies"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\analysis\external"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\analysis\generated_files"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\analysis\hashes"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.1\analysis\tests"
SetOutPath "$INSTDIR\liftweb\target\scala_2.8.0\test-classes"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.0\test-classes\LiftConsole$.class"
File "C:\home\projects\SLiMStack\liftweb\target\scala_2.8.0\test-classes\RunWebApp$.class"
SetOutPath "$INSTDIR\liftweb\src\test\scala"
File "C:\home\projects\SLiMStack\liftweb\src\test\scala\LiftConsole.scala"
File "C:\home\projects\SLiMStack\liftweb\src\test\scala\RunWebApp.scala"
SetOutPath "$INSTDIR\liftweb\src\test\resources"
File "C:\home\projects\SLiMStack\liftweb\src\test\resources\.keep"
SetOutPath "$INSTDIR\liftweb\src\main\webapp"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\index.html"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\pet.html"
SetOutPath "$INSTDIR\liftweb\src\main\webapp\WEB-INF"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\WEB-INF\web.xml"
SetOutPath "$INSTDIR\liftweb\src\main\webapp\templates-hidden"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\templates-hidden\default.html"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\templates-hidden\wizard-all.html"
SetOutPath "$INSTDIR\liftweb\src\main\webapp\static"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\static\index.html"
SetOutPath "$INSTDIR\liftweb\src\main\webapp\rockmongo"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\CHANGELOG"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\config.php"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\index.php"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\INSTALL"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\LICENSE"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\README"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\rock.php"
SetOutPath "$INSTDIR\liftweb\src\main\webapp\rockmongo\logs"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\logs\.keep"
SetOutPath "$INSTDIR\liftweb\src\main\webapp\rockmongo\js"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\js\collection.js"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\js\jquery-1.4.2.min.js"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\js\jquery-ui-1.8.4.custom.min.js"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\js\jquery.textarea.js"
SetOutPath "$INSTDIR\liftweb\src\main\webapp\rockmongo\images"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\images\accept.png"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\images\add.png"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\images\arrow_refresh.png"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\images\connect.png"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\images\cross.png"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\images\database.png"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\images\databases.png"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\images\error.png"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\images\exclamation.png"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\images\grid.png"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\images\key.png"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\images\menuitem_hover.png"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\images\page_copy.png"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\images\page_white_delete.png"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\images\page_white_edit.png"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\images\page_white_paintbrush.png"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\images\page_white_swoosh.png"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\images\report.png"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\images\server.png"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\images\submenu_bullet.png"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\images\table.png"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\images\ui-bg_flat_0_aaaaaa_40x100.png"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\images\ui-bg_flat_75_ffffff_40x100.png"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\images\ui-bg_glass_55_fbf9ee_1x400.png"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\images\ui-bg_glass_65_ffffff_1x400.png"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\images\ui-bg_glass_75_dadada_1x400.png"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\images\ui-bg_glass_75_e6e6e6_1x400.png"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\images\ui-bg_glass_95_fef1ec_1x400.png"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\images\ui-bg_highlight-soft_75_cccccc_1x100.png"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\images\ui-icons_222222_256x240.png"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\images\ui-icons_2e83ff_256x240.png"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\images\ui-icons_454545_256x240.png"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\images\ui-icons_888888_256x240.png"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\images\ui-icons_cd0a0a_256x240.png"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\images\ui-icons_ffffff_256x240.png"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\images\world.png"
SetOutPath "$INSTDIR\liftweb\src\main\webapp\rockmongo\css"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\css\collection.css"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\css\jquery-ui-1.8.4.smoothness.css"
SetOutPath "$INSTDIR\liftweb\src\main\webapp\rockmongo\app\views\index"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\app\views\index\about.php"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\app\views\index\addUser.php"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\app\views\index\admin.php"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\app\views\index\auth.php"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\app\views\index\collection.php"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\app\views\index\collectionDuplicate.php"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\app\views\index\collectionIndexes.php"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\app\views\index\collectionProps.php"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\app\views\index\collectionRename.php"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\app\views\index\collectionStats.php"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\app\views\index\collectionValidate.php"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\app\views\index\command.php"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\app\views\index\createDatabase.php"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\app\views\index\createIndex.php"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\app\views\index\createRow.php"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\app\views\index\databases.php"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\app\views\index\db.php"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\app\views\index\dbExport.php"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\app\views\index\dbImport.php"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\app\views\index\dbs.php"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\app\views\index\dbTransfer.php"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\app\views\index\dropDatabase.php"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\app\views\index\dropDatabaseResult.php"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\app\views\index\execute.php"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\app\views\index\explainQuery.php"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\app\views\index\footer.php"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\app\views\index\header.php"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\app\views\index\killOp.php"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\app\views\index\login.php"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\app\views\index\modifyRow.php"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\app\views\index\newCollection.php"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\app\views\index\processlist.php"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\app\views\index\profile.php"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\app\views\index\profileLevel.php"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\app\views\index\queryHistory.php"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\app\views\index\removeCollection.php"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\app\views\index\repairDatabase.php"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\app\views\index\replication.php"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\app\views\index\server.php"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\app\views\index\status.php"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\app\views\index\top.php"
SetOutPath "$INSTDIR\liftweb\src\main\webapp\rockmongo\app\models"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\app\models\MCollection.php"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\app\models\MDb.php"
SetOutPath "$INSTDIR\liftweb\src\main\webapp\rockmongo\app\lib\page"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\app\lib\page\RPage.php"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\app\lib\page\RPageStyle1.php"
SetOutPath "$INSTDIR\liftweb\src\main\webapp\rockmongo\app\lib\page\lang"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\app\lib\page\lang\default.php"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\app\lib\page\lang\en.php"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\app\lib\page\lang\en_us.php"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\app\lib\page\lang\zh.php"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\app\lib\page\lang\zh_cn.php"
SetOutPath "$INSTDIR\liftweb\src\main\webapp\rockmongo\app\lib\mongo"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\app\lib\mongo\RMongo.php"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\app\lib\mongo\RMongoException.php"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\app\lib\mongo\RObject.php"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\app\lib\mongo\RQuery.php"
SetOutPath "$INSTDIR\liftweb\src\main\webapp\rockmongo\app\lib\mime"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\app\lib\mime\types.php"
SetOutPath "$INSTDIR\liftweb\src\main\webapp\rockmongo\app\lib\ext"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\app\lib\ext\RExtController.php"
SetOutPath "$INSTDIR\liftweb\src\main\webapp\rockmongo\app\langs\zh_cn"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\app\langs\zh_cn\message.php"
SetOutPath "$INSTDIR\liftweb\src\main\webapp\rockmongo\app\langs\pt_br"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\app\langs\pt_br\message.php"
SetOutPath "$INSTDIR\liftweb\src\main\webapp\rockmongo\app\langs\ja_jp"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\app\langs\ja_jp\message.php"
SetOutPath "$INSTDIR\liftweb\src\main\webapp\rockmongo\app\langs\fr_fr"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\app\langs\fr_fr\message.php"
SetOutPath "$INSTDIR\liftweb\src\main\webapp\rockmongo\app\langs\en_us"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\app\langs\en_us\message.php"
SetOutPath "$INSTDIR\liftweb\src\main\webapp\rockmongo\app\controllers"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\app\controllers\collection.php"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\app\controllers\field.php"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\app\controllers\index.php"
SetOutPath "$INSTDIR\liftweb\src\main\webapp\rockmongo\app\classes"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\app\classes\BasicController.php"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\app\classes\Services_JSON.php"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\app\classes\VarEval.php"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\rockmongo\app\classes\VarExportor.php"
SetOutPath "$INSTDIR\liftweb\src\main\webapp\pet"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\pet\edit.html"
SetOutPath "$INSTDIR\liftweb\src\main\webapp\images"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\images\ajax-loader.gif"
File "C:\home\projects\SLiMStack\liftweb\src\main\webapp\images\home.png"
SetOutPath "$INSTDIR\liftweb\src\main\scala\code\view"
File "C:\home\projects\SLiMStack\liftweb\src\main\scala\code\view\.keep"
SetOutPath "$INSTDIR\liftweb\src\main\scala\code\snippet"
File "C:\home\projects\SLiMStack\liftweb\src\main\scala\code\snippet\HelloWorld.scala"
File "C:\home\projects\SLiMStack\liftweb\src\main\scala\code\snippet\PetSnippet.scala"
SetOutPath "$INSTDIR\liftweb\src\main\scala\code\model"
File "C:\home\projects\SLiMStack\liftweb\src\main\scala\code\model\Pet.scala"
File "C:\home\projects\SLiMStack\liftweb\src\main\scala\code\model\User.scala"
SetOutPath "$INSTDIR\liftweb\src\main\scala\code\lib"
File "C:\home\projects\SLiMStack\liftweb\src\main\scala\code\lib\DepencyFactory.scala"
File "C:\home\projects\SLiMStack\liftweb\src\main\scala\code\lib\ProtoUser.scala"
SetOutPath "$INSTDIR\liftweb\src\main\scala\code\db"
File "C:\home\projects\SLiMStack\liftweb\src\main\scala\code\db\SlimstackDemoDB.scala"
SetOutPath "$INSTDIR\liftweb\src\main\scala\code\comet"
File "C:\home\projects\SLiMStack\liftweb\src\main\scala\code\comet\.keep"
SetOutPath "$INSTDIR\liftweb\src\main\scala\bootstrap\liftweb"
File "C:\home\projects\SLiMStack\liftweb\src\main\scala\bootstrap\liftweb\Boot.scala"
SetOutPath "$INSTDIR\liftweb\src\main\resources"
File "C:\home\projects\SLiMStack\liftweb\src\main\resources\.keep"
SetOutPath "$INSTDIR\liftweb\src\main\resources\props"
File "C:\home\projects\SLiMStack\liftweb\src\main\resources\props\.keep"
File "C:\home\projects\SLiMStack\liftweb\src\main\resources\props\default.props"
SetOutPath "$INSTDIR\liftweb\project"
File "C:\home\projects\SLiMStack\liftweb\project\build.properties"
SetOutPath "$INSTDIR\liftweb\project\target\scala_2.8.0\test-classes"
File "C:\home\projects\SLiMStack\liftweb\project\target\scala_2.8.0\test-classes\.keep"
SetOutPath "$INSTDIR\liftweb\project\target\scala_2.8.0\classes"
File "C:\home\projects\SLiMStack\liftweb\project\target\scala_2.8.0\classes\.keep"
SetOutPath "$INSTDIR\liftweb\project\plugins"
File "C:\home\projects\SLiMStack\liftweb\project\plugins\Plugins.scala"
SetOutPath "$INSTDIR\liftweb\project\plugins\target\scala_2.7.7\plugin-classes"
File "C:\home\projects\SLiMStack\liftweb\project\plugins\target\scala_2.7.7\plugin-classes\IdeaProject$$anonfun$idea$1.class"
File "C:\home\projects\SLiMStack\liftweb\project\plugins\target\scala_2.7.7\plugin-classes\IdeaProject$class.class"
File "C:\home\projects\SLiMStack\liftweb\project\plugins\target\scala_2.7.7\plugin-classes\IdeaProject.class"
SetOutPath "$INSTDIR\liftweb\project\plugins\target\scala_2.7.7\plugin-classes\stax"
File "C:\home\projects\SLiMStack\liftweb\project\plugins\target\scala_2.7.7\plugin-classes\stax\StaxPlugin$$anonfun$1.class"
File "C:\home\projects\SLiMStack\liftweb\project\plugins\target\scala_2.7.7\plugin-classes\stax\StaxPlugin$$anonfun$2.class"
File "C:\home\projects\SLiMStack\liftweb\project\plugins\target\scala_2.7.7\plugin-classes\stax\StaxPlugin$$anonfun$3.class"
File "C:\home\projects\SLiMStack\liftweb\project\plugins\target\scala_2.7.7\plugin-classes\stax\StaxPlugin$$anonfun$4.class"
File "C:\home\projects\SLiMStack\liftweb\project\plugins\target\scala_2.7.7\plugin-classes\stax\StaxPlugin$$anonfun$5.class"
File "C:\home\projects\SLiMStack\liftweb\project\plugins\target\scala_2.7.7\plugin-classes\stax\StaxPlugin$$anonfun$6.class"
File "C:\home\projects\SLiMStack\liftweb\project\plugins\target\scala_2.7.7\plugin-classes\stax\StaxPlugin$$anonfun$7.class"
File "C:\home\projects\SLiMStack\liftweb\project\plugins\target\scala_2.7.7\plugin-classes\stax\StaxPlugin$$anonfun$stax$StaxPlugin$$staxDeployTask$1.class"