Skip to content

Commit 1586c35

Browse files
committed
- added missing file
1 parent 414ddac commit 1586c35

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed

Demos/Utils/CMakeLists.txt

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
add_library(Utils
2+
Hashmap.h
3+
IndexedFaceMesh.cpp
4+
IndexedFaceMesh.h
5+
IndexedTetMesh.cpp
6+
IndexedTetMesh.h
7+
ObjectArray.h
8+
OBJLoader.cpp
9+
OBJLoader.h
10+
SceneLoader.cpp
11+
SceneLoader.h
12+
TetGenLoader.cpp
13+
TetGenLoader.h
14+
Utilities.cpp
15+
Utilities.h
16+
VolumeIntegration.cpp
17+
VolumeIntegration.h
18+
19+
CMakeLists.txt
20+
)
21+
22+
find_package( Eigen3 REQUIRED )
23+
include_directories( ${EIGEN3_INCLUDE_DIR} )
24+
25+
install(TARGETS Utils
26+
RUNTIME DESTINATION bin
27+
LIBRARY DESTINATION lib
28+
ARCHIVE DESTINATION lib)
29+
30+
install(DIRECTORY .
31+
DESTINATION include/Demos/Utils
32+
FILES_MATCHING PATTERN "*.h")
33+
34+
35+
36+

0 commit comments

Comments
 (0)