-
-
Notifications
You must be signed in to change notification settings - Fork 352
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use cmake Fetch to retrieve maxLibQt repo and modify CMakeLists.txt a…
…s required
- Loading branch information
elecpower
committed
Oct 26, 2023
1 parent
9a4b654
commit 8aec94b
Showing
5 changed files
with
22 additions
and
5 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,17 @@ | ||
# Fetch maxLibQt source code from Github | ||
|
||
include(FetchContent) | ||
|
||
FetchContent_Declare( | ||
maxLibQt | ||
GIT_REPOSITORY https://github.com/edgetx/maxLibQt | ||
GIT_TAG 61ef4edd # PR#2 | ||
) | ||
|
||
FetchContent_MakeAvailable(maxLibQt) | ||
|
||
message("Fetched maxLibQt source code from Github: ${maxLibQt_SOURCE_DIR}") | ||
include_directories( | ||
${maxLibQt_SOURCE_DIR} | ||
${maxLibQt_BINARY_DIR} | ||
) |
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