1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-11 07:22:22 +00:00
freebsd-ports/math/carve/files/patch-include_CMakeLists.txt
Pietro Cerutti 2bbecf479f - New port: math/carve
Carve is a C++ library designed to perform boolean operations between two
  arbitrary polygonal meshes. The standard union and intersection operations
  are supported, as are symmetric and asymmetric difference. It is also
  possible to implement custom operations using Carve, allowing results to be
  formed from any combination of inputs.
  Carve supports a variety of inputs, including both closed and open surfaces,
  faces with arbitrary edge counts and datasets with multiple disjoint,
  embedded or touching surfaces. Carve can also interpolate arbitrary values
  across faces, meaning that CSG operations need not discard colour, texture
  coordinates or other data.

  WWW: http://code.google.com/p/carve/
2012-02-20 10:56:06 +00:00

19 lines
604 B
Plaintext

--- include/CMakeLists.txt.orig 2012-02-17 18:09:09.000000000 +0100
+++ include/CMakeLists.txt 2012-02-17 18:09:18.000000000 +0100
@@ -3,6 +3,7 @@
DESTINATION "${CMAKE_INSTALL_PREFIX}/include"
FILES_MATCHING
PATTERN "*.hpp"
+ PATTERN "*.h"
PATTERN "internal" EXCLUDE
REGEX "external/boost" EXCLUDE
)
@@ -11,6 +12,7 @@
DESTINATION "${CMAKE_INSTALL_PREFIX}/include"
FILES_MATCHING
PATTERN "*.hpp"
+ PATTERN "*.h"
PATTERN "internal" EXCLUDE
)
endif(CARVE_SYSTEM_BOOST)