Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Merge pull request #9041 from shuffle2/no-pch
windows: fix build if pch were to be disabled
- Loading branch information
Showing
4 changed files
with
4 additions
and
3 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -26,7 +26,7 @@ | ||
| #include "QtUtils/SignalDaemon.h" | ||
| #endif | ||
|
|
||
| #ifndef WIN32 | ||
| #ifndef _WIN32 | ||
| #include <qpa/qplatformnativeinterface.h> | ||
| #endif | ||
|
|
||
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 |
|---|---|---|
| @@ -7,6 +7,7 @@ | ||
| #include <QMainWindow> | ||
| #include <QStringList> | ||
|
|
||
| #include <array> | ||
| #include <memory> | ||
| #include <optional> | ||
| #include <string> | ||
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 |
|---|---|---|
| @@ -6,7 +6,7 @@ | ||
|
|
||
| #define VK_NO_PROTOTYPES | ||
|
|
||
| #if defined(WIN32) | ||
| #if defined(_WIN32) | ||
| #define VK_USE_PLATFORM_WIN32_KHR | ||
| #endif | ||
|
|
||