star-vx

Structuring voxels for ray-tracing
git clone git://git.meso-star.fr/star-vx.git
Log | Files | Refs | README | LICENSE

commit 6984039a23d7c8e81e914a1c6184a4179a0f61e3
parent ac987898a7ba9232ea93a66c700b7dd11a26ae9d
Author: Vincent Forest <vincent.forest@meso-star.com>
Date:   Fri, 11 May 2018 15:23:56 +0200

Fix the CMakeLists

Diffstat:
Mcmake/CMakeLists.txt | 7+++----
1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt @@ -47,14 +47,13 @@ set(SVX_FILES_SRC svx_octree.c svx_octree_trace_ray.c svx_tree.c) -set(SSOL_FILES_INC +set(SVX_FILES_INC svx_buffer.h svx_device.h - svx_octree.h svx_tree.h svx_tree_builder.h svx_tree_generic_func.h) -set(SSOL_FILES_INC_API +set(SVX_FILES_INC_API svx.h) set(SVX_FILES_DOC COPYING README.md) @@ -104,6 +103,6 @@ install(TARGETS svx ARCHIVE DESTINATION bin LIBRARY DESTINATION lib RUNTIME DESTINATION bin) -install(FILES ${SVX_FILES_INC_API} DESTINATION include/high_tune) +install(FILES ${SVX_FILES_INC_API} DESTINATION include/star) install(FILES ${SVX_FILES_DOC} DESTINATION share/doc/svx)