1
0
Fork 0

Add visual studio user setting file, so we don't need to configure the debugger options each time.

This commit is contained in:
Wilfried Goesgens 2016-03-02 16:20:15 +01:00
parent f5d14029c8
commit 25f6311972
2 changed files with 9 additions and 0 deletions

View File

@ -220,6 +220,7 @@ include(CheckCXX11Features)
find_package(Threads REQUIRED) find_package(Threads REQUIRED)
if (MSVC) if (MSVC)
configure_file("Installation/Windows/vcproj.user/arangod.vcxproj.user" ${CMAKE_BINARY_DIR})
add_definitions("-D_CRT_SECURE_NO_WARNINGS=1") add_definitions("-D_CRT_SECURE_NO_WARNINGS=1")
add_definitions("-DFD_SETSIZE=2048") add_definitions("-DFD_SETSIZE=2048")
add_definitions("-DUSE_REGEX_STATIC=1") add_definitions("-DUSE_REGEX_STATIC=1")

View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<LocalDebuggerCommandArguments>--config etc/relative/arangod.conf aoeu</LocalDebuggerCommandArguments>
<LocalDebuggerWorkingDirectory>..\..</LocalDebuggerWorkingDirectory>
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor>
</PropertyGroup>
</Project>