Skip to content
Snippets Groups Projects
Commit eea7b43e authored by Robert P. Goldman's avatar Robert P. Goldman
Browse files

Set "dxl" as type for ACL images.

parent 5fdc8130
No related branches found
No related tags found
No related merge requests found
......@@ -156,10 +156,10 @@ itself.")) ;; operation on a system and its dependencies
#+ecl
((member :dll :lib :shared-library :static-library :program :object :program)
(compile-file-type :type bundle-type))
((member :image) "image")
((member :image) #-allegro "image" #+allegro "dxl")
((member :dll :shared-library) (cond ((os-macosx-p) "dylib") ((os-unix-p) "so") ((os-windows-p) "dll")))
((member :lib :static-library) (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"))))
((eql :program) (cond ((os-unix-p) nil) ((os-windows-p) "exe")))))
(defun bundle-output-files (o c)
......
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