-
Notifications
You must be signed in to change notification settings - Fork 235
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rename libcamera-apps to rpicam-apps.
This change introduces a global rename of all the application and library files from libcamera-* to rpicam-*. Symlinks are setup to allow users to continue using the old names, but they will be deprecated in the near future, so users are encouraged to adopt the new naming as soon as possible. Signed-off-by: Naushir Patuck <[email protected]>
- Loading branch information
Showing
54 changed files
with
352 additions
and
306 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
2 changes: 1 addition & 1 deletion
2
...orkflows/libcamera-apps-style-checker.yml → ...b/workflows/rpicam-apps-style-checker.yml
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,4 +1,4 @@ | ||
name: libcamera-apps style checker | ||
name: rpicam-apps style checker | ||
on: | ||
pull_request: | ||
branches: [ main ] | ||
|
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,37 +1,62 @@ | ||
libcamera_still = executable('libcamera-still', files('libcamera_still.cpp'), | ||
include_directories : include_directories('..'), | ||
dependencies: [libcamera_dep, boost_dep], | ||
link_with : libcamera_app, | ||
install : true) | ||
|
||
libcamera_vid = executable('libcamera-vid', files('libcamera_vid.cpp'), | ||
include_directories : include_directories('..'), | ||
dependencies: [libcamera_dep, boost_dep], | ||
link_with : libcamera_app, | ||
install : true) | ||
|
||
libcamera_hello = executable('libcamera-hello', files('libcamera_hello.cpp'), | ||
include_directories : include_directories('..'), | ||
dependencies: libcamera_dep, | ||
link_with : libcamera_app, | ||
install : true) | ||
|
||
libcamera_raw = executable('libcamera-raw', files('libcamera_raw.cpp'), | ||
include_directories : include_directories('..'), | ||
dependencies: [libcamera_dep, boost_dep], | ||
link_with : libcamera_app, | ||
install : true) | ||
|
||
libcamera_jpeg = executable('libcamera-jpeg', files('libcamera_jpeg.cpp'), | ||
include_directories : include_directories('..'), | ||
dependencies: [libcamera_dep, boost_dep], | ||
link_with : libcamera_app, | ||
install : true) | ||
rpicam_still = executable('rpicam-still', files('rpicam_still.cpp'), | ||
include_directories : include_directories('..'), | ||
dependencies: [libcamera_dep, boost_dep], | ||
link_with : rpicam_app, | ||
install : true) | ||
|
||
rpicam_vid = executable('rpicam-vid', files('rpicam_vid.cpp'), | ||
include_directories : include_directories('..'), | ||
dependencies: [libcamera_dep, boost_dep], | ||
link_with : rpicam_app, | ||
install : true) | ||
|
||
rpicam_hello = executable('rpicam-hello', files('rpicam_hello.cpp'), | ||
include_directories : include_directories('..'), | ||
dependencies: libcamera_dep, | ||
link_with : rpicam_app, | ||
install : true) | ||
|
||
rpicam_raw = executable('rpicam-raw', files('rpicam_raw.cpp'), | ||
include_directories : include_directories('..'), | ||
dependencies: [libcamera_dep, boost_dep], | ||
link_with : rpicam_app, | ||
install : true) | ||
|
||
rpicam_jpeg = executable('rpicam-jpeg', files('rpicam_jpeg.cpp'), | ||
include_directories : include_directories('..'), | ||
dependencies: [libcamera_dep, boost_dep], | ||
link_with : rpicam_app, | ||
install : true) | ||
|
||
# Install symlinks to the old app names for legacy purposes. | ||
install_symlink('libcamera-still', | ||
install_dir: get_option('bindir'), | ||
pointing_to: 'rpicam-still') | ||
|
||
install_symlink('libcamera-vid', | ||
install_dir: get_option('bindir'), | ||
pointing_to: 'rpicam-vid') | ||
|
||
install_symlink('libcamera-hello', | ||
install_dir: get_option('bindir'), | ||
pointing_to: 'rpicam-hello') | ||
|
||
install_symlink('libcamera-raw', | ||
install_dir: get_option('bindir'), | ||
pointing_to: 'rpicam-raw') | ||
|
||
install_symlink('libcamera-jpeg', | ||
install_dir: get_option('bindir'), | ||
pointing_to: 'rpicam-jpeg') | ||
|
||
if enable_tflite | ||
libcamera_detect = executable('libcamera-detect', files('libcamera_detect.cpp'), | ||
include_directories : include_directories('..'), | ||
dependencies: [libcamera_dep, boost_dep], | ||
link_with : libcamera_app, | ||
install : true) | ||
rpicam_detect = executable('rpicam-detect', files('rpicam_detect.cpp'), | ||
include_directories : include_directories('..'), | ||
dependencies: [libcamera_dep, boost_dep], | ||
link_with : rpicam_app, | ||
install : true) | ||
|
||
install_symlink('libcamera-detect', | ||
install_dir: get_option('bindir'), | ||
pointing_to: 'rpicam-detect') | ||
endif |
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
Oops, something went wrong.