Skip to content

Commit

Permalink
Prepend CMAKE_CURRENT_SOURCE_DIR to header file list
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanbuettner authored and Stefan Büttner committed Nov 28, 2019
1 parent c0d8e9c commit 9c6fd8a
Showing 1 changed file with 14 additions and 15 deletions.
29 changes: 14 additions & 15 deletions src/boundingmesh/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -72,21 +72,20 @@ target_link_libraries(

set(
BOUNDINGMESH_HDRS
boundingmesh.h
ContractionUtils.h
Decimator.h
FileUtils.h
Mesh.h
MetricGenerator.h
OptimizerInferface.h
Primitives.h
Segmenter.h
SegmenterDownsampling.h
SegmenterSimple.h
SimpleOptimizer.h
Split.h
VoxelSet.h
VoxelSubset.h
${CMAKE_CURRENT_SOURCE_DIR}/ContractionUtils.h
${CMAKE_CURRENT_SOURCE_DIR}/Decimator.h
${CMAKE_CURRENT_SOURCE_DIR}/FileUtils.h
${CMAKE_CURRENT_SOURCE_DIR}/Mesh.h
${CMAKE_CURRENT_SOURCE_DIR}/MetricGenerator.h
${CMAKE_CURRENT_SOURCE_DIR}/OptimizerInterface.h
${CMAKE_CURRENT_SOURCE_DIR}/Primitives.h
${CMAKE_CURRENT_SOURCE_DIR}/Segmenter.h
${CMAKE_CURRENT_SOURCE_DIR}/SegmenterDownsampling.h
${CMAKE_CURRENT_SOURCE_DIR}/SegmenterSimple.h
${CMAKE_CURRENT_SOURCE_DIR}/SimpleOptimizer.h
${CMAKE_CURRENT_SOURCE_DIR}/Split.h
${CMAKE_CURRENT_SOURCE_DIR}/VoxelSet.h
${CMAKE_CURRENT_SOURCE_DIR}/VoxelSubset.h
)

set(BOUNDINGMESH_LIBRARIES boundingmesh boundingmeshdecomposition)
Expand Down

0 comments on commit 9c6fd8a

Please sign in to comment.