From 2ff10ad0216eb60c61b7c815293cf80b6132d761 Mon Sep 17 00:00:00 2001 From: Florent Castelli Date: Sat, 21 Jan 2017 00:28:32 +0100 Subject: [PATCH] cmake: Add missing Windows file to common --- Source/Core/Common/CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Source/Core/Common/CMakeLists.txt b/Source/Core/Common/CMakeLists.txt index 498adcf8f8..2a5ff1d4d8 100644 --- a/Source/Core/Common/CMakeLists.txt +++ b/Source/Core/Common/CMakeLists.txt @@ -37,6 +37,9 @@ set(SRCS Analytics.cpp if(ANDROID) set(SRCS ${SRCS} Logging/ConsoleListenerDroid.cpp) +elseif(WIN32) + set(SRCS ${SRCS} + Logging/ConsoleListenerWin.cpp) else() set(SRCS ${SRCS} Logging/ConsoleListenerNix.cpp)