Create sam sfm directories for issue #148
parent
f567f5a5dd
commit
a9b9113719
|
@ -8,7 +8,9 @@ set (gtsam_subdirs
|
|||
symbolic
|
||||
discrete
|
||||
linear
|
||||
nonlinear
|
||||
nonlinear
|
||||
sam
|
||||
sfm
|
||||
slam
|
||||
navigation
|
||||
)
|
||||
|
|
|
@ -0,0 +1,6 @@
|
|||
# Install headers
|
||||
file(GLOB sam_headers "*.h")
|
||||
install(FILES ${sam_headers} DESTINATION include/gtsam/sam)
|
||||
|
||||
# Build tests
|
||||
add_subdirectory(tests)
|
|
@ -0,0 +1 @@
|
|||
gtsamAddTestsGlob(sam "test*.cpp" "" "gtsam")
|
|
@ -0,0 +1,6 @@
|
|||
# Install headers
|
||||
file(GLOB sfm_headers "*.h")
|
||||
install(FILES ${sfm_headers} DESTINATION include/gtsam/sfm)
|
||||
|
||||
# Build tests
|
||||
add_subdirectory(tests)
|
|
@ -0,0 +1 @@
|
|||
gtsamAddTestsGlob(sfm "test*.cpp" "" "gtsam")
|
Loading…
Reference in New Issue