Skip to content

Instantly share code, notes, and snippets.

@mikemccracken
Created July 20, 2014 20:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mikemccracken/3543950789f95cd4a072 to your computer and use it in GitHub Desktop.
Save mikemccracken/3543950789f95cd4a072 to your computer and use it in GitHub Desktop.
whalesong make-launcher.rkt that works with 6.0
#lang racket/base
(require launcher/launcher)
(require racket/runtime-path)
(define-runtime-path whalesong-path "whalesong.rkt")
(define-runtime-path whalesong-gui-path "whalesong-gui.rkt")
(make-racket-launcher (list (path->string whalesong-path))
"whalesong"
'())
(make-racket-launcher (list (path->string whalesong-gui-path))
"whalesong-gui"
'())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment