Open phoe opened 5 years ago
Reproduced on OS X and Linux, too.
The following workaround works well for me:
(defun main ()
(dolist (lib '("smokebase" "smokeqtcore" "smokeqtgui"))
(cffi:load-foreign-library (format nil
#+win32 "~A.dll"
#+darwin "qtlibs!~A.dylib"
#+linux "qtlibs!~A.so"
lib)))
(with-main-window (window 'main-window)
(q+:set-style-sheet qt:*qapplication* *stylesheet*)))
Still reproducible on the latest Quicklisp dist.
On Windows, running a deployed application results in:
A workaround is to use CFFI to manually load the foreign libraries before invoking the Qt application: