mirror of https://gitee.com/bigwinds/arangodb
Add visual studio user setting file, so we don't need to configure the debugger options each time.
This commit is contained in:
parent
f5d14029c8
commit
25f6311972
|
@ -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")
|
||||||
|
|
|
@ -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>
|
Loading…
Reference in New Issue