-
Notifications
You must be signed in to change notification settings - Fork 287
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1395 from fspindle/fix_cmake
Add missing required visp modules when tutorials/examples are build as stand alone projects
- Loading branch information
Showing
13 changed files
with
62 additions
and
26 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
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 |
---|---|---|
@@ -1,8 +1,11 @@ | ||
PROJECT(GeometricFeatures) | ||
cmake_minimum_required(VERSION 3.5) | ||
|
||
FIND_PACKAGE(VISP REQUIRED) | ||
IF(VISP_FOUND) | ||
INCLUDE(${VISP_USE_FILE}) | ||
ENDIF(VISP_FOUND) | ||
project(GeometricFeatures) | ||
|
||
find_package(VISP REQUIRED) | ||
if(VISP_FOUND) | ||
include(${VISP_USE_FILE}) | ||
endif() | ||
|
||
add_executable(manGeometricFeatures manGeometricFeatures.cpp) | ||
|
||
ADD_EXECUTABLE(manGeometricFeatures manGeometricFeatures.cpp) |
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 |
---|---|---|
@@ -1,14 +1,15 @@ | ||
PROJECT(ImageManipulation) | ||
|
||
FIND_PACKAGE(VISP REQUIRED) | ||
IF(VISP_FOUND) | ||
INCLUDE(${VISP_USE_FILE}) | ||
ENDIF(VISP_FOUND) | ||
|
||
ADD_EXECUTABLE(manDisplay manDisplay.cpp) | ||
ADD_EXECUTABLE(manGrab1394-1 manGrab1394-1.cpp) | ||
ADD_EXECUTABLE(manGrab1394-2 manGrab1394-2.cpp) | ||
ADD_EXECUTABLE(manGrabDirectShow manGrabDirectShow.cpp) | ||
ADD_EXECUTABLE(manGrabDisk manGrabDisk.cpp) | ||
ADD_EXECUTABLE(manGrabV4l2 manGrabV4l2.cpp) | ||
cmake_minimum_required(VERSION 3.5) | ||
|
||
project(ImageManipulation) | ||
|
||
find_package(VISP REQUIRED) | ||
if(VISP_FOUND) | ||
include(${VISP_USE_FILE}) | ||
endif() | ||
|
||
add_executable(manDisplay manDisplay.cpp) | ||
add_executable(manGrab1394 manGrab1394.cpp) | ||
add_executable(manGrabDirectShow manGrabDirectShow.cpp) | ||
add_executable(manGrabDisk manGrabDisk.cpp) | ||
add_executable(manGrabV4l2 manGrabV4l2.cpp) | ||
|
File renamed without changes.
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,12 @@ | ||
cmake_minimum_required(VERSION 3.5) | ||
|
||
project(man-moment) | ||
|
||
find_package(VISP REQUIRED) | ||
if(VISP_FOUND) | ||
include(${VISP_USE_FILE}) | ||
endif() | ||
|
||
add_executable(manServoMomentsSimple manServoMomentsSimple.cpp) | ||
|
||
|
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,13 @@ | ||
cmake_minimum_required(VERSION 3.5) | ||
|
||
project(ImageManipulation) | ||
|
||
find_package(VISP REQUIRED) | ||
if(VISP_FOUND) | ||
include(${VISP_USE_FILE}) | ||
endif() | ||
|
||
add_executable(manServo4PointsDisplay manServo4PointsDisplay.cpp) | ||
add_executable(manSimu4Dots manSimu4Dots.cpp) | ||
add_executable(manSimu4Points manSimu4Points.cpp) | ||
|
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
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