Skip to content

Commit

Permalink
my work included
Browse files Browse the repository at this point in the history
  • Loading branch information
habonlaci committed Jul 25, 2014
1 parent 791c572 commit 36c0033
Show file tree
Hide file tree
Showing 8 changed files with 1,358 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,7 @@

# Build directory
build/

*~
*.kdev4
.kdev4
2 changes: 2 additions & 0 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ ADD_SUBDIRECTORY(fm)
ADD_SUBDIRECTORY(loop)
ADD_SUBDIRECTORY(sfm)
ADD_SUBDIRECTORY(util)
ADD_SUBDIRECTORY(densemap)

SET(MAVMAP_LIBRARIES
sequential_mapper
Expand All @@ -38,6 +39,7 @@ SET(MAVMAP_LIBRARIES
timer
math)

ADD_EXECUTABLE(densemapper densemapper.cc)
ADD_EXECUTABLE(mapper mapper.cc)
TARGET_LINK_LIBRARIES(mapper
${MAVMAP_LIBRARIES}
Expand Down
10 changes: 10 additions & 0 deletions src/densemap/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
INCLUDE_DIRECTORIES(
../
)

ADD_LIBRARY(rectify rectify.cc)
ADD_LIBRARY(reproject reproject.cc)
TARGET_LINK_LIBRARIES(rectify
reproject
)

Loading

0 comments on commit 36c0033

Please sign in to comment.