Skip to content

Commit

Permalink
Merge pull request #10 from arpg/fix_sleep_build
Browse files Browse the repository at this point in the history
Header included and CMakeLists changed to prevent compilation errors
  • Loading branch information
Dorian committed Jul 7, 2014
2 parents 6df470a + 921d7d9 commit 9eed21b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion applications/calib/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ set(NO_OPENCV_GPU TRUE)
find_package( OpenCV QUIET )

option(BUILD_CALIBGRID OFF "Toggle build calibgrid.")
if( Pangolin_FOUND AND Ceres_FOUND AND OpenCV2_FOUND AND BUILD_CALIBGRID)
if( Pangolin_FOUND AND Ceres_FOUND AND OpenCV_FOUND AND BUILD_CALIBGRID)
add_executable( calibgrid main.cpp )
target_link_libraries( calibgrid ${CERES_LIBRARIES} )
target_link_libraries( calibgrid ${Pangolin_LIBRARIES} )
Expand Down
1 change: 1 addition & 0 deletions applications/calib/main.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#include <unistd.h>
#include <memory>

#include <pangolin/pangolin.h>
Expand Down

0 comments on commit 9eed21b

Please sign in to comment.