From e3912a6ba07a6bf68dadb880ff6f3a111e638938 Mon Sep 17 00:00:00 2001 From: Bartosz Date: Wed, 23 Nov 2022 10:28:27 +0100 Subject: [PATCH] [MOS-783] Fix not adding development assets Small fix for development assets Fix for jenkins build - changed SSH to HTTPS clone for pure-core --- CMakeLists.txt | 2 +- cmake/modules/AddDatabases.cmake | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 352e9d98bb14b7e2867ab9eaeb6b4ad7e223a328..f5172dca6cd594df6846b32ec956c914a08c22f6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -127,7 +127,7 @@ endif () FetchContent_Declare( pure-core - GIT_REPOSITORY git@github.com:mudita/pure-core + GIT_REPOSITORY https://github.com/mudita/pure-core.git ) FetchContent_MakeAvailable(pure-core) diff --git a/cmake/modules/AddDatabases.cmake b/cmake/modules/AddDatabases.cmake index ec394f65576ab0d5784d4df8db6156f36e778e6c..326e2fbd7e2172374d6a520823a3e13d0e9d1a65 100644 --- a/cmake/modules/AddDatabases.cmake +++ b/cmake/modules/AddDatabases.cmake @@ -17,7 +17,7 @@ function(add_databases_target) ${ARGN} ) - if (${_ARG_DEVEL} STREQUAL "ON") + if (${_ARG_DEVEL} STREQUAL "ON" OR ${_ARG_DEVEL} EQUAL 1) set (DEVEL --development True) endif()