summaryrefslogtreecommitdiffstats
path: root/src/math
diff options
context:
space:
mode:
authorPiotr Dziwinski <piotrdz@gmail.com>2012-06-22 16:31:55 +0200
committerPiotr Dziwinski <piotrdz@gmail.com>2012-06-22 16:31:55 +0200
commit8bb223e67955904c14e26a980927d313272ed22b (patch)
treeaa59cbd36f30485af4720f1055ad6be92caf88ef /src/math
parent4531ac88d3c022866d564be40c20593de4c70bfc (diff)
downloadcolobot-8bb223e67955904c14e26a980927d313272ed22b.tar.gz
colobot-8bb223e67955904c14e26a980927d313272ed22b.tar.bz2
colobot-8bb223e67955904c14e26a980927d313272ed22b.zip
Templates for new implementation
- added template of classes/structs for new implementation - changed #include paths - updated README files
Diffstat (limited to 'src/math')
-rw-r--r--src/math/test/CMakeLists.txt3
-rw-r--r--src/math/test/geometry_test.cpp4
2 files changed, 4 insertions, 3 deletions
diff --git a/src/math/test/CMakeLists.txt b/src/math/test/CMakeLists.txt
index e94f765..c736022 100644
--- a/src/math/test/CMakeLists.txt
+++ b/src/math/test/CMakeLists.txt
@@ -13,7 +13,8 @@ add_test(matrix_test ./matrix_test)
add_test(vector_test ./vector_test)
add_test(geometry_test ./geometry_test)
-include_directories(c:/dxsdk/include)
+# Change to DirectX SDK directory
+include_directories("c:/dxsdk/include")
add_definitions(-DSTRICT -DD3D_OVERLOADS)
diff --git a/src/math/test/geometry_test.cpp b/src/math/test/geometry_test.cpp
index 4aef414..d6dbd9b 100644
--- a/src/math/test/geometry_test.cpp
+++ b/src/math/test/geometry_test.cpp
@@ -21,8 +21,8 @@
#include "../func.h"
#include "../geometry.h"
#include "../conv.h"
-#include "../old/math3d.h"
-#include "../../graphics/d3d/d3dutil.h"
+#include "../../old/math3d.h"
+#include "../../old/d3dutil.h"
#include <d3d.h>
#include <cstdio>