changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > demo / scripts/compile.ros

changeset 1: e4f8df713d55
parent: ros/compile.ros@eb8ed24e8a76
child: 8f59e2f1b8c4
author: ellis <ellis@rwest.io>
date: Sun, 30 Apr 2023 22:24:18 -0400
permissions: -rwxr-xr-x
description: scaffolding from lives past
1 #!/bin/sh
2 #|-*- mode:lisp -*-|#
3 #|
4 exec ros -Q -- $0 "$@"
5 |#
6 (progn ;;init forms
7  (in-package :cl-user)
8  (ros:ensure-asdf)
9  (asdf:load-asd #P"~/dev/cl-demo/cl-demo.asd")
10  (asdf:load-asd #P"~/quicklisp/local-projects/cl-rocksdb/cl-rocksdb.asd")
11  #+quicklisp(ql:quickload '(cl-demo) :silent t))
12 
13 ;; TODO 2023-02-25: opts (system, config, user input)
14 (defun main (&rest argv)
15  (declare (ignorable argv)))