diff options
| author | a1xd <[email protected]> | 2021-09-22 20:49:04 -0400 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-09-22 20:49:04 -0400 |
| commit | 8a4b6f57758338d5537d4671184099a4728a8cdd (patch) | |
| tree | df36529a344d5d21ff11f5ba021ec80afb4b68a4 /wrapper/wrapper.vcxproj | |
| parent | Merge pull request #87 from matthewstrasiotto/streamer_mode (diff) | |
| parent | improve converter + docs (diff) | |
| download | rawaccel-8a4b6f57758338d5537d4671184099a4728a8cdd.tar.xz rawaccel-8a4b6f57758338d5537d4671184099a4728a8cdd.zip | |
Merge pull request #105 from a1xd/1.5.x
v1.5
Diffstat (limited to 'wrapper/wrapper.vcxproj')
| -rw-r--r-- | wrapper/wrapper.vcxproj | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/wrapper/wrapper.vcxproj b/wrapper/wrapper.vcxproj index 721a981..5d58614 100644 --- a/wrapper/wrapper.vcxproj +++ b/wrapper/wrapper.vcxproj @@ -57,6 +57,7 @@ <WarningLevel>Level3</WarningLevel> <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> <LanguageStandard>stdcpp17</LanguageStandard> + <FloatingPointModel>Fast</FloatingPointModel> </ClCompile> <Link> <AdditionalDependencies>User32.lib;</AdditionalDependencies> @@ -70,6 +71,7 @@ <WarningLevel>Level3</WarningLevel> <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> <LanguageStandard>stdcpp17</LanguageStandard> + <FloatingPointModel>Fast</FloatingPointModel> </ClCompile> <Link> <AdditionalDependencies>User32.lib;</AdditionalDependencies> @@ -83,19 +85,19 @@ copy /Y "$(TargetDir)Newtonsoft.Json.dll" "$(SolutionDir)signed\Newtonsoft.Json. </ResourceCompile> </ItemDefinitionGroup> <ItemGroup> + <ClInclude Include="input.h" /> + <ClInclude Include="interop-exception.h" /> <ClInclude Include="resource.h" /> - <ClInclude Include="wrapper_io.hpp" /> </ItemGroup> <ItemGroup> <ClCompile Include="AssemblyInfo.cpp" /> + <ClCompile Include="input.cpp" /> <ClCompile Include="wrapper.cpp" /> - <ClCompile Include="wrapper_io.cpp" /> </ItemGroup> <ItemGroup> <Reference Include="Newtonsoft.Json"> <HintPath>..\packages\Newtonsoft.Json.12.0.3\lib\net45\Newtonsoft.Json.dll</HintPath> </Reference> - <Reference Include="System.Windows.Forms" /> </ItemGroup> <ItemGroup> <ResourceCompile Include="wrapper.rc" /> |