-
-
Notifications
You must be signed in to change notification settings - Fork 356
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(cpn): update to Qt 5.15.2 and rework application packaging (#4270)
Co-authored-by: raphaelcoeffic <[email protected]> Co-authored-by: philmoz <[email protected]>
- Loading branch information
1 parent
9d5c6e6
commit a3faf7e
Showing
49 changed files
with
347 additions
and
197 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
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,25 @@ | ||
# - try to find program dfu-util | ||
|
||
set(DFU_UTIL_ROOT_DIR | ||
"${DFU_UTIL_ROOT_DIR}" | ||
CACHE | ||
PATH | ||
"Root directory to search for dfu-util") | ||
|
||
find_program(DFU_UTIL_PROGRAM | ||
NAMES | ||
dfu-util | ||
HINTS | ||
"${DFU_UTIL_ROOT_DIR}") | ||
|
||
include(FindPackageHandleStandardArgs) | ||
find_package_handle_standard_args(DFU_UTIL | ||
DEFAULT_MSG | ||
DFU_UTIL_PROGRAM) | ||
|
||
if(DFU_UTIL_FOUND) | ||
set(DFU_UTIL_PATH "${DFU_UTIL_PROGRAM}") | ||
mark_as_advanced(DFU_UTIL_ROOT_DIR) | ||
endif() | ||
|
||
mark_as_advanced(DFU_UTIL_PROGRAM) |
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,27 @@ | ||
# - try to find libssl-1 library | ||
|
||
if (DEFINED ENV{LIBSSL1_ROOT_DIR}) | ||
set(LIBSSL1_ROOT_DIR "$ENV{LIBSSL1_ROOT_DIR}") | ||
endif() | ||
|
||
find_library(LIBSSL1_LIBRARY | ||
NAMES | ||
libssl.so.1.1 | ||
libssl-1_1.dll | ||
libssl-1_1.dylib | ||
HINTS | ||
"${LIBSSL1_ROOT_DIR}") | ||
|
||
get_filename_component(LIBSSL1_LIBRARY_PATH ${LIBSSL1_LIBRARY} PATH) | ||
|
||
include(FindPackageHandleStandardArgs) | ||
find_package_handle_standard_args(LIBSSL1 | ||
DEFAULT_MSG | ||
LIBSSL1_LIBRARY_PATH) | ||
|
||
if(LIBSSL1_FOUND) | ||
set(LIBSSL1_LIBRARY_DIR "${LIBSSL1_LIBRARY_PATH}") | ||
mark_as_advanced(LIBSSL1_ROOT_DIR) | ||
endif() | ||
|
||
mark_as_advanced(LIBSSL1_LIBRARY_PATH) |
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,31 @@ | ||
# - try to find libusb-1 library | ||
|
||
set(LIBUSB1_ROOT_DIR | ||
"${LIBUSB1_ROOT_DIR}" | ||
CACHE | ||
PATH | ||
"Root directory to search for libusb-1") | ||
|
||
find_library(LIBUSB1_LIBRARY | ||
NAMES | ||
libusb-1.0 | ||
libusb-1.0.so | ||
libusb-1.0.so.0 | ||
libusb-1.0.dll | ||
libusb-1.0.dylib | ||
HINTS | ||
"${LIBUSB1_ROOT_DIR}") | ||
|
||
get_filename_component(LIBUSB1_LIBRARY_PATH ${LIBUSB1_LIBRARY} PATH) | ||
|
||
include(FindPackageHandleStandardArgs) | ||
find_package_handle_standard_args(LIBUSB1 | ||
DEFAULT_MSG | ||
LIBUSB1_LIBRARY_PATH) | ||
|
||
if(LIBUSB1_FOUND) | ||
set(LIBUSB1_LIBRARY_DIR "${LIBUSB1_LIBRARY_PATH}") | ||
mark_as_advanced(LIBUSB1_ROOT_DIR) | ||
endif() | ||
|
||
mark_as_advanced(LIBUSB1_LIBRARY_PATH) |
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.