summaryrefslogtreecommitdiff
path: root/test/Jamfile.jam
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2023-10-29 14:11:46 +0000
committerDan Goodliffe <dan@randomdan.homeip.net>2023-10-29 15:26:09 +0000
commit49a422ed91289a31142a8c0fb8b7030d2dea98a1 (patch)
tree9bdc69a8f6ee4cc6eda388eea6e0baa5606ff4b5 /test/Jamfile.jam
parentInitial OpenMesh based terrain data and tests (diff)
downloadilt-49a422ed91289a31142a8c0fb8b7030d2dea98a1.tar.bz2
ilt-49a422ed91289a31142a8c0fb8b7030d2dea98a1.tar.xz
ilt-49a422ed91289a31142a8c0fb8b7030d2dea98a1.zip
Initial commit of findPoint on terrain
2D navigate from a default/given starting point, possible scope for improvement, but it's not exactly slow; <9ms
Diffstat (limited to 'test/Jamfile.jam')
-rw-r--r--test/Jamfile.jam4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/Jamfile.jam b/test/Jamfile.jam
index eab3996..7fa7bfc 100644
--- a/test/Jamfile.jam
+++ b/test/Jamfile.jam
@@ -61,9 +61,11 @@ run test-instancing.cpp : : : <library>test ;
run test-glContainer.cpp : : : <library>test ;
run test-pack.cpp : : : <library>test ;
run test-terrain.cpp : : : <library>test <library>..//OpenMeshCore ;
+run perf-terrain.cpp : : : <library>test <library>..//OpenMeshCore <library>benchmark ;
compile test-static-enumDetails.cpp ;
compile test-static-stream_support.cpp ;
explicit perf-assetFactory ;
explicit perf-persistence ;
-alias perf : perf-assetFactory perf-persistence ;
+explicit perf-terrain ;
+alias perf : perf-assetFactory perf-persistence perf-terrain ;
explicit perf ;