Skip to content

Commit 2ec5d28

Browse files
committed
ground truth tool used for ground normals and trajectories in master's thesis
1 parent e659d11 commit 2ec5d28

2 files changed

Lines changed: 521 additions & 0 deletions

File tree

src/groundFinderGT/CMakeLists.txt

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)