Join GitHub today
GitHub is home to over 40 million developers working together to host and review code, manage projects, and build software together.
Sign upCompile errors in qtzeroconf on Windows with MinGW #326
Labels
Comments
This comment has been minimized.
This comment has been minimized.
Further analysis:
However they are NOT considered during a build!? |
This comment has been minimized.
This comment has been minimized.
Got that little bugger! The problem was in remote.pro overriding all DEFINES:
This is wrong and overrides all previous DEFINES in qtzeroconf.pri! Correct:
|
This comment has been minimized.
This comment has been minimized.
Good catch @zehnm ! :) |
zehnm
added a commit
that referenced
this issue
Nov 3, 2019
This comment has been minimized.
This comment has been minimized.
Fixed in feature/project-setup branch. This issue will be resolved once #324 is merged to dev |
This comment has been minimized.
This comment has been minimized.
zehnm
added a commit
that referenced
this issue
Nov 3, 2019
This comment has been minimized.
This comment has been minimized.
Plugin loading fixed :-) Test case with only ir plugin inside plugins folder:
Non available plugins fail, IR plugin succeeds. |
This comment has been minimized.
This comment has been minimized.
Fixed in dev branch |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The Windows 10 development environment has been setup according to:
https://github.com/YIO-Remote/remote-software/blob/master/DEV%20ENVIRONMENT.md#windows
However there are multiple errors in the qtzeroconf / bonjour-sdk module.
This could be fixed with
#include <stdint.h>
in CommonServices.h in the#elif ( TARGET_OS_WIN32 )
block starting at line 234:Looks like MinGW behaves differently than other compilers.
My assumption is that MinGW is not suited for this project on Windows.
Has anyone got this running on Windows? E.g. with the Visual Studio compiler?