There was an error while loading. Please reload this page.
1 parent e659d11 commit 2ec5d28Copy full SHA for 2ec5d28
2 files changed
src/groundFinderGT/CMakeLists.txt
@@ -0,0 +1,23 @@
1
+# CMakeLists.txt for groundFinderGT
2
+
3
+add_executable(getNormalsGT getNormalsGT.cpp)
4
5
+target_link_libraries(getNormalsGT
6
+ scan
7
+ scanclient
8
+ scanio
9
+ ${ANN_LIBRARIES}
10
+ ${NEWMAT_LIBRARIES}
11
+ ${SUITESPARSE_LIBRARIES}
12
+ ${Boost_PROGRAM_OPTIONS_LIBRARY}
13
+ ${Boost_SYSTEM_LIBRARY}
14
+ ${Boost_FILESYSTEM_LIBRARY}
15
+)
16
17
+if(WIN32)
18
+ target_link_libraries(getNormalsGT XGetopt)
19
+endif()
20
21
+install(TARGETS getNormalsGT
22
+ RUNTIME DESTINATION bin
23
0 commit comments