Changeset 132


Ignore:
Timestamp:
Dec 19, 2003, 1:33:08 PM (21 years ago)
Author:
Gary Byers
Message:

Define bundle/executable paths here.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ccl/examples/cocoa.lisp

    r6 r132  
    11(in-package "CCL")
     2
     3;;; We need to be able to point the CoreFoundation and Cocoa libraries
     4;;; at some bundle very early in the process.  If you want to use some
     5;;; other bundle path, you may need to change the value of
     6;;; *default-bundle-path*; if you want to use some other executable
     7;;; within that bundle, you may need to change the value of
     8;;; *default-executable-path*.
     9
     10
     11(defparameter *default-bundle-path* "ccl:OpenMCL.app;")
     12(defparameter *default-bundle-executable-path*
     13  #+darwinppc-target
     14  (merge-pathnames "Contents/MacOS/dppccl" *default-bundle-path*)
     15  #+linuxppc-target
     16  (merge-pathnames "ppccl" *default-bundle-path*))
     17
    218
    319(require "OBJC-SUPPORT")
Note: See TracChangeset for help on using the changeset viewer.