forked from ros-o/catkin
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "removed redundant ROSDEPS_ROOT" to ease applying working copy
This reverts commit e487a50.
- Loading branch information
1 parent
797f40e
commit 28819fd
Showing
5 changed files
with
27 additions
and
38 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,18 @@ | ||
@echo off | ||
if "%1"=="" ( | ||
@if "%1"=="" ( | ||
goto EnterBuildEnvironment | ||
) else ( | ||
goto EnterExecutionEnvironment | ||
) | ||
|
||
:EnterBuildEnvironment | ||
echo "Entering build environment at @CMAKE_BINARY_DIR@, type 'exit to leave'" | ||
@echo "Entering build environment at @CMAKE_BINARY_DIR@" | ||
cmd /K @CMAKE_BINARY_DIR@/setup.bat | ||
echo "Exiting build environment at @CMAKE_BINARY_DIR@" | ||
goto End | ||
@echo "Exiting build environment at @CMAKE_BINARY_DIR@" | ||
@goto End | ||
|
||
:EnterExecutionEnvironment | ||
call @CMAKE_BINARY_DIR@/setup.bat | ||
%* | ||
goto End | ||
@call @CMAKE_BINARY_DIR@/setup.bat | ||
@%* | ||
@goto End | ||
|
||
:End |
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,24 +1,23 @@ | ||
@echo off | ||
set CATKIN_SHELL=bat | ||
set PYTHONPATH=@CMAKE_BINARY_DIR@/gen/py;%PYTHONPATH% | ||
set PATH=@CMAKE_BINARY_DIR@/bin;@catkin_SOURCE_DIR@/bin;%PATH% | ||
set CATKIN_BINARY_DIR=@CMAKE_BINARY_DIR@ | ||
set CATKIN_SOURCE_DIR=@CMAKE_SOURCE_DIR@ | ||
@set CATKIN_SHELL=bat | ||
@set PYTHONPATH=@CMAKE_BINARY_DIR@/gen/py;%PYTHONPATH% | ||
@set PATH=@CMAKE_BINARY_DIR@/bin;@catkin_SOURCE_DIR@/bin;%PATH% | ||
@set CATKIN_BINARY_DIR=@CMAKE_BINARY_DIR@ | ||
@set CATKIN_SOURCE_DIR=@CMAKE_SOURCE_DIR@ | ||
|
||
rem We should eventually do catkin's env-hooks properly. | ||
rem Refer to setup.sh.buildspace.in for example code on how to bring them in. | ||
@REM We should eventually do catkin's env-hooks properly. | ||
@REM Refer to setup.sh.buildspace.in for example code on how to bring them in. | ||
|
||
rem These should go in a catkin/00.catkin.buildspace.bat.in | ||
@REM These should go in a catkin/00.catkin.buildspace.bat.in | ||
|
||
set CATKIN_ROSDEPS_BINARY_PATH=@CATKIN_ROSDEPS_BINARY_PATH@ | ||
if DEFINED CATKIN_ROSDEPS_BINARY_PATH set PATH=%CATKIN_ROSDEPS_BINARY_PATH%;%PATH% | ||
@set ROSDEPS_ROOT=@ROSDEPS_ROOT@ | ||
@if DEFINED ROSDEPS_ROOT set PATH=%ROSDEPS_ROOT%/bin;%ROSDEPS_ROOT%/lib;%PATH% | ||
|
||
REM These are compatible and should go in build/etc/catkin/profile.d/10.ros.buildspace.all | ||
REM Actually it would go in 10.ros.buildsspace.bat.in and the .all should get split up | ||
@REM These are compatible and should go in build/etc/catkin/profile.d/10.ros.buildspace.all | ||
@REM Actually it would go in 10.ros.buildsspace.bat.in and the .all should get split up | ||
|
||
set ROS_TEST_RESULTS_DIR=@CMAKE_BINARY_DIR@/test_results | ||
set ROS_PACKAGE_PATH=@CMAKE_SOURCE_DIR@ | ||
set ROS_DISTRO=fuerte | ||
if NOT DEFINED ROS_MASTER_URI ( | ||
@set ROS_TEST_RESULTS_DIR=@CMAKE_BINARY_DIR@/test_results | ||
@set ROS_PACKAGE_PATH=@CMAKE_SOURCE_DIR@ | ||
@set ROS_DISTRO=fuerte | ||
@if NOT DEFINED ROS_MASTER_URI ( | ||
set ROS_MASTER_URI=http://localhost:11311 | ||
) |
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