We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4e6ea0 commit ef0d2c0Copy full SHA for ef0d2c0
cmake/modules/FindUnifySDK.cmake
@@ -1,12 +1,20 @@
1
include(FetchContent)
2
3
if(NOT DEFINED UNIFYSDK_GIT_REPOSITORY)
4
- set(UNIFYSDK_GIT_REPOSITORY git@github.com:SiliconLabs/UnifySDK_test.git)
+ if(DEFINED $ENV{UNIFYSDK_GIT_REPOSITORY})
5
+ set(UNIFYSDK_GIT_REPOSITORY $ENV{UNIFYSDK_GIT_REPOSITORY})
6
+ else()
7
+ set(UNIFYSDK_GIT_REPOSITORY https://github.com/SiliconLabs/UnifySDK)
8
+ endif()
9
endif()
10
11
# TODO: Pin stable revision once supported
12
if(NOT DEFINED UNIFYSDK_GIT_TAG)
- set(UNIFYSDK_GIT_TAG z-wave/main)
13
14
15
16
+ set(UNIFYSDK_GIT_TAG main)
17
18
19
20
FetchContent_Declare(
0 commit comments