Skip to content

Commit

Permalink
Show warning when loading on unsupported platform
Browse files Browse the repository at this point in the history
  • Loading branch information
borodust committed Aug 29, 2021
1 parent d9b3b53 commit 9e10825
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 2 deletions.
1 change: 1 addition & 0 deletions bindings/x86_64-apple-darwin-gnu.lisp
@@ -1,3 +1,4 @@
;; Generated by :claw at 2021-08-29T11:20:32.684570Z
(uiop:define-package :%glfw (:use))
(uiop:define-package :%glfw.ext (:use))
(uiop:define-package :bodge-glfw-bindings~pristine (:use :cl))
Expand Down
1 change: 1 addition & 0 deletions bindings/x86_64-pc-linux-gnu.lisp
@@ -1,3 +1,4 @@
;; Generated by :claw at 2021-08-29T11:20:32.684570Z
(uiop:define-package :%glfw (:use))
(uiop:define-package :%glfw.ext (:use))
(uiop:define-package :bodge-glfw-bindings~pristine (:use :cl))
Expand Down
1 change: 1 addition & 0 deletions bindings/x86_64-w64-mingw32.lisp
@@ -1,3 +1,4 @@
;; Generated by :claw at 2021-08-29T11:20:32.684570Z
(uiop:define-package :%glfw (:use))
(uiop:define-package :%glfw.ext (:use))
(uiop:define-package :bodge-glfw-bindings~pristine (:use :cl))
Expand Down
6 changes: 4 additions & 2 deletions bodge-glfw-bindings.asd
@@ -1,4 +1,4 @@
;; Generated by :claw at 2021-08-29T02:02:38.359521+03:00
;; Generated by :claw at 2021-08-29T11:20:32.737058Z
(asdf:defsystem #:bodge-glfw-bindings
:description "Bindings generated by bodge-glfw/wrapper"
:author "CLAW"
Expand All @@ -11,4 +11,6 @@
(:file "bindings/x86_64-w64-mingw32" :if-feature
(:and :x86-64 :windows))
(:file "bindings/x86_64-apple-darwin-gnu" :if-feature
(:and :x86-64 :darwin))))
(:and :x86-64 :darwin))))
#-(:or (:and :x86-64 :darwin)(:and :x86-64 :windows)(:and :x86-64 :linux))
(warn "Current platform unrecognized or unsupported by bodge-glfw-bindings system")

0 comments on commit 9e10825

Please sign in to comment.