changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > core / lisp/ffi/glib/glib.asd

changeset 698: 96958d3eb5b0
parent: ea3b643a27a3
author: Richard Westhaver <ellis@rwest.io>
date: Fri, 04 Oct 2024 22:04:59 -0400
permissions: -rw-r--r--
description: fixes
1 ;;; glib.asd --- Glib Sytem Definitions
2 (defsystem :glib
3  :depends-on (:std :log)
4  :description "A thin FFI wrapper for Glib, used to support dynamically-loaded foreign
5 libraries which expose parts of their API via GObjects."
6  :components ((:file "pkg"))
7  :in-order-to ((test-op (test-op "glib/tests"))))
8 
9 (defsystem :glib/tests
10  :depends-on (:std :log :rt :glib)
11  :components ((:file "tests"))
12  :perform (test-op (o c) (symbol-call :rt :do-tests :glib)))