forked from Shinmera/file-select
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfile-select.asd
27 lines (27 loc) · 1.14 KB
/
file-select.asd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
(asdf:defsystem file-select
:version "1.0.0"
:license "zlib"
:author "Yukari Hafner <[email protected]>"
:maintainer "Yukari Hafner <[email protected]>"
:description "A library to invoke the native file selection dialogs to open or save files."
:homepage "https://shinmera.github.io/file-select/"
:bug-tracker "https://github.com/shinmera/file-select/issues"
:source-control (:git "https://github.com/shinmera/file-select.git")
:serial T
:defsystem-depends-on (:trivial-features)
:components ((:file "package")
(:file "protocol")
;(:file "gtk" :if-feature :linux)
(:file "zenity" :if-feature :linux)
(:file "yad" :if-feature :linux)
(:file "kdialog" :if-feature :linux)
(:file "macos" :if-feature :darwin)
(:file "win32" :if-feature :windows)
(:file "defaults")
(:file "documentation"))
:depends-on (:cffi
:float-features
(:feature :darwin :trivial-main-thread)
(:feature :windows :com-on)
:pathname-utils
:documentation-utils))