-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
More travis fixes. Disabled transformer build for Qt < 5.8
- Loading branch information
Showing
5 changed files
with
22 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,21 @@ | ||
TEMPLATE = subdirs | ||
SUBDIRS = extplane-server \ | ||
clients/extplane-client-qt \ | ||
extplane-transformer | ||
clients/extplane-client-qt | ||
CONFIG += ordered | ||
|
||
include(common.pri) | ||
|
||
defined(XPLANE_SDK_PATH, var) { | ||
message("Building X-Plane plugin with SDK in $$XPLANE_SDK_PATH") | ||
SUBDIRS += extplane-plugin | ||
message("Building X-Plane plugin with SDK in $$XPLANE_SDK_PATH") | ||
SUBDIRS += extplane-plugin | ||
} else { | ||
warning("No X-Plane SDK found in ../XPlaneSDK or ~/SDK - not building X-Plane plugin") | ||
warning("No X-Plane SDK found in ../XPlaneSDK or ~/SDK - not building X-Plane plugin") | ||
} | ||
|
||
versionAtLeast(QT_VERSION, 5.8.0) { | ||
SUBDIRS += extplane-transformer | ||
} else { | ||
warning(Qt 5.8.0 needed to build extplane-transformer - skipping $$QT_VERSION) | ||
} | ||
|
||
OTHER_FILES += README.md clients/extplane-client-qt/README |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters