From 4d752047de02a0cce2c17ab1fc31063d5228c3c7 Mon Sep 17 00:00:00 2001 From: Artur Laksberg Date: Wed, 3 Jul 2013 13:19:59 -0700 Subject: [PATCH] Fix incorrect OutDir, which broke setup build; Fix testlistener project --- Build/Common.Build.settings | 4 +-- .../src/http/listener/http_windows_server.cpp | 3 ++- .../testlistener/VS11/testlistener110.vcxproj | 27 ++++++++++--------- .../http/utilities/testlistener/stdafx.h | 12 ++++----- 4 files changed, 23 insertions(+), 23 deletions(-) diff --git a/Build/Common.Build.settings b/Build/Common.Build.settings index 0226cf7462..b295df1457 100644 --- a/Build/Common.Build.settings +++ b/Build/Common.Build.settings @@ -35,9 +35,7 @@ $(BuildRoot)\Binaries\$(Platform)\$(Configuration)\ - - $(OutputPath)$(Configuration) + $(OutputPath) $(BuildRoot)\Build\MSBuild.Community.Tasks $(BuildRoot)\Build\Wix\3.6\ $(WixToolPath) diff --git a/Release/src/http/listener/http_windows_server.cpp b/Release/src/http/listener/http_windows_server.cpp index 6b001a4930..d03df36d38 100644 --- a/Release/src/http/listener/http_windows_server.cpp +++ b/Release/src/http/listener/http_windows_server.cpp @@ -28,6 +28,8 @@ #include "cpprest/http_server_api.h" #include "cpprest/http_windows_server.h" #include "cpprest/rawptrstream.h" +#include "cpprest/http_helpers.h" +#include "cpprest/http_msg.h" using namespace web; using namespace utility; @@ -40,7 +42,6 @@ using namespace utility::experimental; using namespace logging; using namespace logging::log; - namespace web { namespace http { namespace experimental { diff --git a/Release/tests/Functional/http/utilities/testlistener/VS11/testlistener110.vcxproj b/Release/tests/Functional/http/utilities/testlistener/VS11/testlistener110.vcxproj index 9b381e386c..f285317112 100644 --- a/Release/tests/Functional/http/utilities/testlistener/VS11/testlistener110.vcxproj +++ b/Release/tests/Functional/http/utilities/testlistener/VS11/testlistener110.vcxproj @@ -184,12 +184,14 @@ - - - - - - + + + + + + + + Create Create Create @@ -200,13 +202,12 @@ - - - - - - - + + + + + + diff --git a/Release/tests/Functional/http/utilities/testlistener/stdafx.h b/Release/tests/Functional/http/utilities/testlistener/stdafx.h index 703af56e95..efae458c40 100644 --- a/Release/tests/Functional/http/utilities/testlistener/stdafx.h +++ b/Release/tests/Functional/http/utilities/testlistener/stdafx.h @@ -41,10 +41,10 @@ #include "cpprest/uri.h" #include "cpprest/asyncrt_utils.h" -#include "http_server.h" -#include "http_listener.h" -#include "http_server_api.h" -#include "http_windows_server.h" +#include "cpprest/http_server.h" +#include "cpprest/http_listener.h" +#include "cpprest/http_server_api.h" +#include "cpprest/http_windows_server.h" -#include "log.h" -#include "filelog.h" +#include "cpprest/log.h" +#include "cpprest/filelog.h"