diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2023-11-04 17:07:58 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2023-11-04 17:07:58 +0000 |
commit | 582ac127f763f512c45f35e17b768487e3b51796 (patch) | |
tree | 4b67659fd1a0906649c1f83570ab9cbb30194f75 /test/Jamfile.jam | |
parent | Reformat test source (diff) | |
download | ilt-582ac127f763f512c45f35e17b768487e3b51796.tar.bz2 ilt-582ac127f763f512c45f35e17b768487e3b51796.tar.xz ilt-582ac127f763f512c45f35e17b768487e3b51796.zip |
Rename TerrainMesh to GeoData to drop inplace
Diffstat (limited to 'test/Jamfile.jam')
-rw-r--r-- | test/Jamfile.jam | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/test/Jamfile.jam b/test/Jamfile.jam index d88a238..6f62056 100644 --- a/test/Jamfile.jam +++ b/test/Jamfile.jam @@ -46,7 +46,7 @@ lib test : [ glob *.cpp : test-*.cpp perf-*.cpp ] ; run test-collection.cpp ; run test-maths.cpp ; run test-lib.cpp ; -run test-geo.cpp ; +run test-geoData.cpp : -- : fixtures/height/SD19.asc : <library>test ; run test-network.cpp : : : <library>test ; run test-persistence.cpp : -- : [ sequence.insertion-sort [ glob-tree fixtures : *.json ] ] : <library>test ; run test-text.cpp : : : <library>test ; @@ -55,13 +55,12 @@ run test-render.cpp : -- : test-assetFactory : <library>test ; run test-glContextBhvr.cpp ; run test-assetFactory.cpp : -- : [ sequence.insertion-sort [ glob-tree $(res) : *.* ] fixtures/rgb.txt test-instancing ] : <library>test ; run perf-assetFactory.cpp : -- : test-assetFactory : <library>benchmark <library>test ; +run perf-geoData.cpp : : : <library>test <library>benchmark ; run perf-persistence.cpp : -- : test-persistence : <library>benchmark <library>test ; run test-worker.cpp ; run test-instancing.cpp : : : <library>test ; run test-glContainer.cpp : : : <library>test ; run test-pack.cpp : : : <library>test ; -run test-terrain.cpp : -- : fixtures/height/SD19.asc : <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 ; |