-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fb31809
commit 248de42
Showing
20 changed files
with
1,510 additions
and
470 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
SET (AMBF_CLIENT_FOUND FALSE) | ||
|
||
|
||
UNSET( AMBF_CLIENT_INCLUDE_DIR CACHE) | ||
UNSET( AMBF_CLIENT_LIBRARY CACHE) | ||
|
||
FIND_PATH (AMBF_CLIENT_INCLUDE_DIR ambf_client/ambf_client.h | ||
HINTS | ||
/localcodebase/ambfnags92/ambf/ambf_controller/ambf_client/ | ||
/usr/local/include | ||
/usr/include | ||
) | ||
|
||
FIND_LIBRARY (AMBF_CLIENT_LIBRARY ambf_client | ||
PATHS | ||
/localcodebase/ambfnags92/ambf/build/devel/lib | ||
) | ||
|
||
IF (AMBF_CLIENT_INCLUDE_DIR AND AMBF_CLIENT_LIBRARY) | ||
SET (AMBF_CLIENT_FOUND TRUE) | ||
ELSE(AMBF_CLIENT_INCLUDE_DIR AND AMBF_CLIENT_LIBRARY) | ||
SET (AMBF_CLIENT_FOUND FALSE) | ||
MESSAGE (SEND_ERROR " Could not find AMBF_CLIENT.") | ||
ENDIF (RBDL_INCLUDE_DIR AND RBDL_LIBRARY) | ||
|
||
IF (AMBF_CLIENT_FOUND) | ||
MESSAGE(STATUS "Found AMBF: ${AMBF_CLIENT_LIBRARY}") | ||
ELSE(AMBF_CLIENT_FOUND) | ||
MESSAGE(STATUS " NOt Found AMBF") | ||
ENDIF (RBDL_FOUND) |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,30 @@ | ||
SET (AMBF_CLIENT_FOUND FALSE) | ||
|
||
|
||
UNSET( AMBF_CLIENT_INCLUDE_DIR CACHE) | ||
UNSET( AMBF_CLIENT_LIBRARY CACHE) | ||
|
||
FIND_PATH (AMBF_CLIENT_INCLUDE_DIR ambf_client/ambf_client.h | ||
HINTS | ||
/localcodebase/ambfnags92/ambf/ambf_controller/ambf_client/include | ||
/usr/local/include | ||
/usr/include | ||
) | ||
|
||
FIND_LIBRARY (AMBF_CLIENT_LIBRARY ambf_client | ||
PATHS | ||
/localcodebase/ambfnags92/ambf/build/devel/lib | ||
) | ||
|
||
IF (AMBF_CLIENT_INCLUDE_DIR AND AMBF_CLIENT_LIBRARY) | ||
SET (AMBF_CLIENT_FOUND TRUE) | ||
ELSE(AMBF_CLIENT_INCLUDE_DIR AND AMBF_CLIENT_LIBRARY) | ||
SET (AMBF_CLIENT_FOUND FALSE) | ||
MESSAGE (SEND_ERROR " Could not find AMBF_CLIENT.") | ||
ENDIF (RBDL_INCLUDE_DIR AND RBDL_LIBRARY) | ||
|
||
IF (AMBF_CLIENT_FOUND) | ||
MESSAGE(STATUS "Found AMBF: ${AMBF_CLIENT_LIBRARY}") | ||
ELSE(AMBF_CLIENT_FOUND) | ||
MESSAGE(STATUS " NOt Found AMBF") | ||
ENDIF (RBDL_FOUND) |
Oops, something went wrong.