-
Notifications
You must be signed in to change notification settings - Fork 68
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds 'wrappers' target, installs wrapper scripts
This target, run by default, installs wrapper scripts "uvcdat", "cdat" and "loadcdat" into WRAPPER_INSTALL_LOCATION (by default install/wrappers). These scripts setup the environment, so they are safe to be brought in the user's PATH; they won't conflict or break the environment. This should really be "make install" but that target is broken by our CPack setup.
- Loading branch information
Showing
2 changed files
with
41 additions
and
0 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,4 @@ | ||
#!/bin/bash | ||
# source is not portable whereas . is | ||
. "@CMAKE_INSTALL_PREFIX@/bin/setup_runtime.sh" | ||
python@PYVER@ "$@" |
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