From 0989ccf29d798ec385e91270035e073d912d3211 Mon Sep 17 00:00:00 2001 From: Vic Lee Date: Thu, 9 Aug 2012 07:51:44 +0800 Subject: [PATCH] cmake: include libfreerdp-server-channels in Windows build. --- server/CMakeLists.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/server/CMakeLists.txt b/server/CMakeLists.txt index cf7f3e743..a42687eb0 100644 --- a/server/CMakeLists.txt +++ b/server/CMakeLists.txt @@ -29,9 +29,9 @@ if(NOT WIN32) if(WITH_X11) add_subdirectory(X11) endif() - - # Build Server Channels library - add_subdirectory(channels) else() add_subdirectory(Windows) endif() + +# Build Server Channels library +add_subdirectory(channels)