We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 414ddac commit 1586c35Copy full SHA for 1586c35
Demos/Utils/CMakeLists.txt
@@ -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