Commit 50a9ee6e authored by Martin Sustrik's avatar Martin Sustrik

MSVC build fixed

Signed-off-by: 's avatarMartin Sustrik <sustrik@250bpm.com>
parent 05ce301f
...@@ -40,7 +40,7 @@ ...@@ -40,7 +40,7 @@
/> />
<Tool <Tool
Name="VCCLCompilerTool" Name="VCCLCompilerTool"
AdditionalOptions="-DDLL_EXPORT -DFD_SETSIZE=1024" AdditionalOptions="-DDLL_EXPORT -DFD_SETSIZE=1024 -D_CRT_SECURE_NO_WARNINGS"
Optimization="0" Optimization="0"
MinimalRebuild="true" MinimalRebuild="true"
BasicRuntimeChecks="3" BasicRuntimeChecks="3"
...@@ -112,7 +112,7 @@ ...@@ -112,7 +112,7 @@
/> />
<Tool <Tool
Name="VCCLCompilerTool" Name="VCCLCompilerTool"
AdditionalOptions="-DDLL_EXPORT -DFD_SETSIZE=1024" AdditionalOptions="-DDLL_EXPORT -DFD_SETSIZE=1024 -D_CRT_SECURE_NO_WARNINGS"
Optimization="2" Optimization="2"
EnableIntrinsicFunctions="true" EnableIntrinsicFunctions="true"
RuntimeLibrary="2" RuntimeLibrary="2"
...@@ -186,7 +186,7 @@ ...@@ -186,7 +186,7 @@
/> />
<Tool <Tool
Name="VCCLCompilerTool" Name="VCCLCompilerTool"
AdditionalOptions="-DDLL_EXPORT -DFD_SETSIZE=1024" AdditionalOptions="-DDLL_EXPORT -DFD_SETSIZE=1024 -D_CRT_SECURE_NO_WARNINGS"
Optimization="2" Optimization="2"
EnableIntrinsicFunctions="true" EnableIntrinsicFunctions="true"
AdditionalIncludeDirectories="../../../../OpenPGM/include" AdditionalIncludeDirectories="../../../../OpenPGM/include"
...@@ -394,10 +394,6 @@ ...@@ -394,10 +394,6 @@
RelativePath="..\..\..\src\req.cpp" RelativePath="..\..\..\src\req.cpp"
> >
</File> </File>
<File
RelativePath="..\..\..\src\router.cpp"
>
</File>
<File <File
RelativePath="..\..\..\src\select.cpp" RelativePath="..\..\..\src\select.cpp"
> >
...@@ -442,14 +438,6 @@ ...@@ -442,14 +438,6 @@
RelativePath="..\..\..\src\trie.cpp" RelativePath="..\..\..\src\trie.cpp"
> >
</File> </File>
<File
RelativePath="..\..\..\src\vtcp_connecter.cpp"
>
</File>
<File
RelativePath="..\..\..\src\vtcp_listener.cpp"
>
</File>
<File <File
RelativePath="..\..\..\src\xpub.cpp" RelativePath="..\..\..\src\xpub.cpp"
> >
...@@ -676,10 +664,6 @@ ...@@ -676,10 +664,6 @@
RelativePath="..\..\..\src\req.hpp" RelativePath="..\..\..\src\req.hpp"
> >
</File> </File>
<File
RelativePath="..\..\..\src\router.hpp"
>
</File>
<File <File
RelativePath="..\..\..\src\select.hpp" RelativePath="..\..\..\src\select.hpp"
> >
...@@ -728,14 +712,6 @@ ...@@ -728,14 +712,6 @@
RelativePath="..\..\..\src\trie.hpp" RelativePath="..\..\..\src\trie.hpp"
> >
</File> </File>
<File
RelativePath="..\..\..\src\vtcp_connecter.hpp"
>
</File>
<File
RelativePath="..\..\..\src\vtcp_listener.hpp"
>
</File>
<File <File
RelativePath="..\..\..\src\windows.hpp" RelativePath="..\..\..\src\windows.hpp"
> >
......
...@@ -25,9 +25,6 @@ ...@@ -25,9 +25,6 @@
// The purpose of this header file is to turn on only the items actually // The purpose of this header file is to turn on only the items actually
// needed on the windows platform. // needed on the windows platform.
// Disable deprecation warnings.
#define _CRT_SECURE_NO_WARNINGS
#ifndef WIN32_LEAN_AND_MEAN #ifndef WIN32_LEAN_AND_MEAN
#define WIN32_LEAN_AND_MEAN #define WIN32_LEAN_AND_MEAN
#endif #endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment