;;; -*-Emacs-Lisp-*-

;; IDS-CFG: installation setting about IDS.

;;; Code:

(add-to-list 'load-path (expand-file-name "."))

(condition-case nil
    (require 'install)
  (error (error "Please install APEL.")))


;;; @ Please specify prefix of install directory.
;;;

;; Please specify IDS prefix [optional]
(setq IDS_PREFIX "ids")




;;; @ optional settings
;;;

(defvar PACKAGEDIR
  (if (boundp 'early-packages)
      (let ((dirs (append (if early-package-load-path
			      early-packages)
			  (if late-package-load-path
			      late-packages)
			  (if last-package-load-path
			      last-packages)))
	    dir)
	(while (not (file-exists-p
		     (setq dir (car dirs))))
	  (setq dirs (cdr dirs)))
	dir)))

;;; IDS-CFG ends here
