Skip to content

Commit 24b63e3

Browse files
authored
Merge pull request #61 from Forceflow/develop
Reverted changes to fix Ninja build errors
2 parents 047813b + ad6af6b commit 24b63e3

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

test/libmorton_test.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121
#include "morton_LUT_generators.h"
2222

2323
// Load libraries we're going to test
24-
#include <morton2D.h>
25-
#include <morton3D.h>
24+
#include <libmorton/morton2D.h>
25+
#include <libmorton/morton3D.h>
2626
#if defined(__BMI2__) || (defined(__AVX2__) && defined(_MSC_VER))
2727
#include <libmorton/morton_BMI.h>
2828
#endif
@@ -31,7 +31,7 @@
3131
#endif
3232

3333
// Load main morton include file (should be unnecessary)
34-
#include <morton.h>
34+
#include <libmorton/morton.h>
3535

3636
using std::string;
3737

test/morton_LUT_generators.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#pragma once
22

3-
#include <morton2D.h>
4-
#include <morton3D.h>
3+
#include <libmorton/morton2D.h>
4+
#include <libmorton/morton3D.h>
55

66
#include <iostream>
77

test/msvc2019/libmorton_test.vcxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,16 +68,16 @@
6868
</ImportGroup>
6969
<PropertyGroup Label="UserMacros" />
7070
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
71-
<IncludePath>$(SolutionDir)\..\..\libmorton;$(IncludePath)</IncludePath>
71+
<IncludePath>$(SolutionDir)\..\..;$(IncludePath)</IncludePath>
7272
</PropertyGroup>
7373
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
74-
<IncludePath>$(SolutionDir)\..\..\libmorton;$(IncludePath)</IncludePath>
74+
<IncludePath>$(SolutionDir)\..\..;$(IncludePath)</IncludePath>
7575
</PropertyGroup>
7676
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
77-
<IncludePath>$(SolutionDir)\..\..\libmorton;$(IncludePath)</IncludePath>
77+
<IncludePath>$(SolutionDir)\..\..;$(IncludePath)</IncludePath>
7878
</PropertyGroup>
7979
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
80-
<IncludePath>$(SolutionDir)\..\..\libmorton;$(IncludePath)</IncludePath>
80+
<IncludePath>$(SolutionDir)\..\..;$(IncludePath)</IncludePath>
8181
</PropertyGroup>
8282
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
8383
<ClCompile>

0 commit comments

Comments
 (0)