Skip to content

Commit

Permalink
fix escaping of # in cmake for macos
Browse files Browse the repository at this point in the history
  • Loading branch information
PeterPetrik committed Aug 3, 2020
1 parent 8ed274b commit cc09ecf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/macos-build.yml
@@ -1,8 +1,8 @@
name: Mac OS build
on: [push, pull_request]
env:
QT_VERSION: 5.14.1
QGIS_DEPS_VERSION: 0.2.2
QT_VERSION: 5.14.2
QGIS_DEPS_VERSION: 0.5.1

jobs:
mac_os_build:
Expand Down
2 changes: 1 addition & 1 deletion src/core/CMakeLists.txt
Expand Up @@ -702,7 +702,7 @@ SET(QGIS_CORE_SRCS

FILE(GLOB JSON_HELP_FILES "${CMAKE_SOURCE_DIR}/resources/function_help/json/*")
IF(NOT USING_NINJA)
STRING(REPLACE "$" "$$" JSON_HELP_FILES "${JSON_HELP_FILES}")
STRING(REPLACE "$" "\$" JSON_HELP_FILES "${JSON_HELP_FILES}")
ENDIF(NOT USING_NINJA)
STRING(REPLACE "\(" "\\(" JSON_HELP_FILES "${JSON_HELP_FILES}")
STRING(REPLACE "\)" "\\)" JSON_HELP_FILES "${JSON_HELP_FILES}")
Expand Down

0 comments on commit cc09ecf

Please sign in to comment.