Skip to content
Snippets Groups Projects
Commit 912ca5bf authored by Francois-Rene Rideau's avatar Francois-Rene Rideau
Browse files

bundle: hush a warning on allegro/windows

parent d6f826ef
No related branches found
No related tags found
No related merge requests found
...@@ -159,7 +159,7 @@ itself.")) ;; operation on a system and its dependencies ...@@ -159,7 +159,7 @@ itself.")) ;; operation on a system and its dependencies
#+(or clasp ecl) #+(or clasp ecl)
((member :dll :lib :shared-library :static-library :program :object :program) ((member :dll :lib :shared-library :static-library :program :object :program)
(compile-file-type :type bundle-type)) (compile-file-type :type bundle-type))
((member :image) (or #+allegro "dxl" #+(and clisp os-windows) "exe" "image")) ((member :image) #+allegro "dxl" #+(and clisp os-windows) "exe" #-(or allegro (and clisp os-windows)) "image")
((member :dll :shared-library) (os-cond ((os-macosx-p) "dylib") ((os-unix-p) "so") ((os-windows-p) "dll"))) ((member :dll :shared-library) (os-cond ((os-macosx-p) "dylib") ((os-unix-p) "so") ((os-windows-p) "dll")))
((member :lib :static-library) (os-cond ((os-unix-p) "a") ((member :lib :static-library) (os-cond ((os-unix-p) "a")
((os-windows-p) (if (featurep '(:or :mingw32 :mingw64)) "a" "lib")))) ((os-windows-p) (if (featurep '(:or :mingw32 :mingw64)) "a" "lib"))))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment