Skip to content

Commit

Permalink
Merge pull request #61 from Forceflow/develop
Browse files Browse the repository at this point in the history
Reverted changes to fix Ninja build errors
  • Loading branch information
Forceflow authored Feb 6, 2021
2 parents 047813b + ad6af6b commit 24b63e3
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions test/libmorton_test.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
#include "morton_LUT_generators.h"

// Load libraries we're going to test
#include <morton2D.h>
#include <morton3D.h>
#include <libmorton/morton2D.h>
#include <libmorton/morton3D.h>
#if defined(__BMI2__) || (defined(__AVX2__) && defined(_MSC_VER))
#include <libmorton/morton_BMI.h>
#endif
Expand All @@ -31,7 +31,7 @@
#endif

// Load main morton include file (should be unnecessary)
#include <morton.h>
#include <libmorton/morton.h>

using std::string;

Expand Down
4 changes: 2 additions & 2 deletions test/morton_LUT_generators.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#pragma once

#include <morton2D.h>
#include <morton3D.h>
#include <libmorton/morton2D.h>
#include <libmorton/morton3D.h>

#include <iostream>

Expand Down
8 changes: 4 additions & 4 deletions test/msvc2019/libmorton_test.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -68,16 +68,16 @@
</ImportGroup>
<PropertyGroup Label="UserMacros" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<IncludePath>$(SolutionDir)\..\..\libmorton;$(IncludePath)</IncludePath>
<IncludePath>$(SolutionDir)\..\..;$(IncludePath)</IncludePath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<IncludePath>$(SolutionDir)\..\..\libmorton;$(IncludePath)</IncludePath>
<IncludePath>$(SolutionDir)\..\..;$(IncludePath)</IncludePath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<IncludePath>$(SolutionDir)\..\..\libmorton;$(IncludePath)</IncludePath>
<IncludePath>$(SolutionDir)\..\..;$(IncludePath)</IncludePath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<IncludePath>$(SolutionDir)\..\..\libmorton;$(IncludePath)</IncludePath>
<IncludePath>$(SolutionDir)\..\..;$(IncludePath)</IncludePath>
</PropertyGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<ClCompile>
Expand Down

0 comments on commit 24b63e3

Please sign in to comment.