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
Problem is that the way the makefile works on linux, it automatically tries to compile the mac related cpp files as well. Maybe you could rename them to .mm? This won't fix the windows specific files though...
The text was updated successfully, but these errors were encountered:
would one simple option be to throw huge ifdef around all the apple code?
#ifdef __APPLE__
#endif
we do that, for example in ofxOsc, since there's windows and posix related code -- we basically have whole files you only compile if you are windows and vice versa.
Hey, I have a partially working linux version of your addon. Dropdown selector doesn't work yet.
https://github.com/underdoeg/ofxNativeGui
Problem is that the way the makefile works on linux, it automatically tries to compile the mac related cpp files as well. Maybe you could rename them to .mm? This won't fix the windows specific files though...
The text was updated successfully, but these errors were encountered: