diff options
| author | 2022-05-28 14:30:15 -0400 | |
|---|---|---|
| committer | 2022-05-28 14:30:15 -0400 | |
| commit | 8a858c2623bc8be34f2f675c0caea6a3bdc70afc (patch) | |
| tree | 0deb7cbbcc103c1b6373538759a69da71c684a2d | |
| parent | Merge pull request #8374 from german77/asnycvibrations (diff) | |
| parent | yuzu-qt: Call -Wl,--subsystem,windows directly (diff) | |
| download | yuzu-8a858c2623bc8be34f2f675c0caea6a3bdc70afc.tar.gz yuzu-8a858c2623bc8be34f2f675c0caea6a3bdc70afc.tar.xz yuzu-8a858c2623bc8be34f2f675c0caea6a3bdc70afc.zip | |
Merge pull request #8385 from lat9nq/just-subsys-win
yuzu-qt: Call -Wl,--subsystem,windows directly
| -rw-r--r-- | src/yuzu/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu/CMakeLists.txt b/src/yuzu/CMakeLists.txt index 2ee21f751..404acdd05 100644 --- a/src/yuzu/CMakeLists.txt +++ b/src/yuzu/CMakeLists.txt | |||
| @@ -240,7 +240,7 @@ elseif(WIN32) | |||
| 240 | if(MSVC) | 240 | if(MSVC) |
| 241 | set_target_properties(yuzu PROPERTIES LINK_FLAGS_RELEASE "/SUBSYSTEM:WINDOWS") | 241 | set_target_properties(yuzu PROPERTIES LINK_FLAGS_RELEASE "/SUBSYSTEM:WINDOWS") |
| 242 | elseif(MINGW) | 242 | elseif(MINGW) |
| 243 | set_target_properties(yuzu PROPERTIES LINK_FLAGS_RELEASE "-mwindows") | 243 | set_target_properties(yuzu PROPERTIES LINK_FLAGS_RELEASE "-Wl,--subsystem,windows") |
| 244 | endif() | 244 | endif() |
| 245 | endif() | 245 | endif() |
| 246 | 246 | ||