You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It generates app/MyApp/UI/MainWindow.hs which contains incorrect module header:
module MainWindow where
which, of course, fails to compile:
File name does not match module name:
Saw: ‘MainWindow’
Expected: ‘MyApp.UI.Fltk.MainWindow’
Now, I understand that it might be tricky to detect full module name, so if it's not possible, maybe another command line switch can be added which will override module name in the header? Or am I missing something?
The text was updated successfully, but these errors were encountered:
Suppose that I keep all my UI-related files in some directory like "app/MyApp/UI/MainWindow.fl". I'm calling fltkhs-fluidtohs:
It generates app/MyApp/UI/MainWindow.hs which contains incorrect module header:
which, of course, fails to compile:
Now, I understand that it might be tricky to detect full module name, so if it's not possible, maybe another command line switch can be added which will override module name in the header? Or am I missing something?
The text was updated successfully, but these errors were encountered: