changelog shortlog graph tags branches changeset files file revisions raw help

Mercurial > core / annotate 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
474
ea3b643a27a3 init glib and gstreamer FFI
Richard Westhaver <ellis@rwest.io>
parents:
diff changeset
1
 ;;; glib.asd --- Glib Sytem Definitions
ea3b643a27a3 init glib and gstreamer FFI
Richard Westhaver <ellis@rwest.io>
parents:
diff changeset
2
 (defsystem :glib
ea3b643a27a3 init glib and gstreamer FFI
Richard Westhaver <ellis@rwest.io>
parents:
diff changeset
3
   :depends-on (:std :log)
ea3b643a27a3 init glib and gstreamer FFI
Richard Westhaver <ellis@rwest.io>
parents:
diff changeset
4
   :description "A thin FFI wrapper for Glib, used to support dynamically-loaded foreign
ea3b643a27a3 init glib and gstreamer FFI
Richard Westhaver <ellis@rwest.io>
parents:
diff changeset
5
 libraries which expose parts of their API via GObjects."
ea3b643a27a3 init glib and gstreamer FFI
Richard Westhaver <ellis@rwest.io>
parents:
diff changeset
6
   :components ((:file "pkg"))
ea3b643a27a3 init glib and gstreamer FFI
Richard Westhaver <ellis@rwest.io>
parents:
diff changeset
7
   :in-order-to ((test-op (test-op "glib/tests"))))
ea3b643a27a3 init glib and gstreamer FFI
Richard Westhaver <ellis@rwest.io>
parents:
diff changeset
8
 
ea3b643a27a3 init glib and gstreamer FFI
Richard Westhaver <ellis@rwest.io>
parents:
diff changeset
9
 (defsystem :glib/tests
ea3b643a27a3 init glib and gstreamer FFI
Richard Westhaver <ellis@rwest.io>
parents:
diff changeset
10
   :depends-on (:std :log :rt :glib)
ea3b643a27a3 init glib and gstreamer FFI
Richard Westhaver <ellis@rwest.io>
parents:
diff changeset
11
   :components ((:file "tests"))
ea3b643a27a3 init glib and gstreamer FFI
Richard Westhaver <ellis@rwest.io>
parents:
diff changeset
12
   :perform (test-op (o c) (symbol-call :rt :do-tests :glib)))