diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2023-11-03 21:31:54 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2023-11-03 21:31:54 +0000 |
commit | 5d9849266e11043deefdd18b4701c7e9c289f37e (patch) | |
tree | d43e7f97613dd6231b9d900758ed89e37b1851d5 /test/Jamfile.jam | |
parent | Don't request a specific OpenGL version, just check we get something sufficie... (diff) | |
parent | Implement terrain intersect ray (diff) | |
download | ilt-5d9849266e11043deefdd18b4701c7e9c289f37e.tar.bz2 ilt-5d9849266e11043deefdd18b4701c7e9c289f37e.tar.xz ilt-5d9849266e11043deefdd18b4701c7e9c289f37e.zip |
Psycho-rebased branch terrain on top of main
Diffstat (limited to 'test/Jamfile.jam')
-rw-r--r-- | test/Jamfile.jam | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/test/Jamfile.jam b/test/Jamfile.jam index e221af7..d88a238 100644 --- a/test/Jamfile.jam +++ b/test/Jamfile.jam @@ -60,9 +60,12 @@ 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 ; explicit perf-persistence ; -alias perf : perf-assetFactory perf-persistence ; +explicit perf-terrain ; +alias perf : perf-assetFactory perf-persistence perf-terrain ; explicit perf ; |