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 de396ba commit 9516fcdCopy full SHA for 9516fcd
CMakeLists.txt
@@ -86,8 +86,11 @@ option(FIREBASE_GITHUB_ACTION_BUILD
86
option(FIREBASE_QUICK_TEST
87
"Enable quick tests will skip tests which requires access to the SECRET" OFF)
88
89
-set(FIREBASE_PYTHON_EXECUTABLE "python" CACHE FILEPATH
90
- "The Python interpreter to use, such as one from a venv")
+find_program(FIREBASE_PYTHON_EXECUTABLE
+ NAMES python3 python
91
+ DOC "The Python interpreter to use, such as one from a venv"
92
+ REQUIRED
93
+)
94
95
set(FIREBASE_XCODE_TARGET_FORMAT "frameworks" CACHE STRING
96
"Format to output, 'frameworks' or 'libraries'")
0 commit comments