;=============================================================================;
;=============================================================================;
;
; $VER: Install_CmpDirs 1.0 (29.10.1995)
;
; Installation script for CmpDirs
; (c) Copyright 1995 by Christian Rattei
;
;=============================================================================;
;=============================================================================;

(set #choose-c-dir "Please choose the directory where CmpDirs should be installed.")
(set #chose-c-dir-help "To this location the executable CmpDirs will be copied. The location should be C: or any directory that lies in your path. Otherwise you will have to start CmpDirs with full path specification!\n\nCmpDirs may be made resident")
(set #copy-c "Copy CmpDirs")
(set #choose-doc-dir "Please choose the directory where the documentation for CmpDirs should be installed.")
(set #chose-doc-dir-help "To this location the documentation file of CmpDirs (CmpDirs.doc) will be copied.")
(set #copy-doc "Copy CmpDirs.doc")

(complete 0)

(set @default-dest
 (askdir
  (prompt #choose-c-dir)
  (help #chose-c-dir-help)
  (default "C:")
 )
)

(protect "CmpDirs" "prwed")

(copyfiles
 (prompt #copy-c)
 (source "")
 (dest @default-dest)
 (choices "CmpDirs")
)

(complete 50)

(set @default-dest
 (askdir
  (prompt #choose-doc-dir)
  (help #chose-doc-dir-help)
  (default "C:")
 )
)

(copyfiles
 (prompt #copy-doc)
 (source "")
 (dest @default-dest)
 (choices "CmpDirs.doc")
)

(complete 100)

;=============================================================================;
