DolphinQt/CMake: Don't build SignalDaemon on Windows
This commit is contained in:
parent
967252dded
commit
f1fae37a81
|
@ -107,7 +107,6 @@ add_executable(dolphin-emu
|
||||||
QtUtils/FlowLayout.cpp
|
QtUtils/FlowLayout.cpp
|
||||||
QtUtils/ModalMessageBox.cpp
|
QtUtils/ModalMessageBox.cpp
|
||||||
QtUtils/ImageConverter.cpp
|
QtUtils/ImageConverter.cpp
|
||||||
QtUtils/SignalDaemon.cpp
|
|
||||||
QtUtils/WindowActivationEventFilter.cpp
|
QtUtils/WindowActivationEventFilter.cpp
|
||||||
QtUtils/WinIconHelper.cpp
|
QtUtils/WinIconHelper.cpp
|
||||||
QtUtils/WrapInScrollArea.cpp
|
QtUtils/WrapInScrollArea.cpp
|
||||||
|
@ -130,6 +129,10 @@ add_executable(dolphin-emu
|
||||||
Updater.cpp
|
Updater.cpp
|
||||||
)
|
)
|
||||||
|
|
||||||
|
if (NOT WIN32)
|
||||||
|
target_sources(dolphin-emu PRIVATE QtUtils/SignalDaemon.cpp)
|
||||||
|
endif()
|
||||||
|
|
||||||
target_compile_definitions(dolphin-emu
|
target_compile_definitions(dolphin-emu
|
||||||
PRIVATE
|
PRIVATE
|
||||||
-DQT_USE_QSTRINGBUILDER
|
-DQT_USE_QSTRINGBUILDER
|
||||||
|
|
Loading…
Reference in New Issue