-
Notifications
You must be signed in to change notification settings - Fork 628
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/integrate-openni2'
Conflicts: doc/doxygen-pages/changeLog_doc.h
- Loading branch information
Showing
27 changed files
with
6,425 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
INCLUDE(../../cmakemodules/AssureCMakeRootFile.cmake) # Avoid user mistake in CMake source directory | ||
|
||
if (CMAKE_MRPT_HAS_OPENNI2) # This project can't be built without OpenNI2 | ||
|
||
#----------------------------------------------------------------- | ||
# CMake file for the MRPT application: ReactiveNav3D-Demo | ||
# | ||
# Run with "cmake ." at the root directory | ||
# | ||
# January 2014, Mariano Jaimez Tarifa <marianojt@uma.es> | ||
#----------------------------------------------------------------- | ||
PROJECT(DifOdometry-Camera) | ||
|
||
#MESSAGE(STATUS "Makefile for application: /apps/ReactiveNav3D-Demo ") | ||
|
||
# --------------------------------------------- | ||
# TARGET: | ||
# --------------------------------------------- | ||
# Define the executable target: | ||
ADD_EXECUTABLE(DifOdometry-Camera | ||
DifOdometry_Camera_main.cpp | ||
DifOdometry_Camera.cpp | ||
DifOdometry_Camera.h) | ||
|
||
SET(TMP_TARGET_NAME "DifOdometry-Camera") | ||
|
||
|
||
|
||
# Add the required libraries for linking: | ||
TARGET_LINK_LIBRARIES(${TMP_TARGET_NAME} ${MRPT_LINKER_LIBS} ${OPENNI2_LIBRARIES}) | ||
|
||
# Dependencies on MRPT libraries: | ||
# Just mention the top-level dependency, the rest will be detected automatically, | ||
# and all the needed #include<> dirs added (see the script DeclareAppDependencies.cmake for further details) | ||
DeclareAppDependencies(${TMP_TARGET_NAME} mrpt-gui mrpt-opengl mrpt-vision) | ||
|
||
DeclareAppForInstall(${TMP_TARGET_NAME}) | ||
|
||
endif (CMAKE_MRPT_HAS_OPENNI2) # This project can't be built without OpenNI2 | ||
|
Oops, something went wrong.