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 1babea4 commit ece5ab5Copy full SHA for ece5ab5
release_build_files/CMakeLists.txt
@@ -29,7 +29,11 @@ if(ANDROID)
29
set(FIREBASE_SDK_LIBDIR
30
"${FIREBASE_CPP_SDK_DIR}/libs/android/${ANDROID_ABI}/${STL_DIR}")
31
elseif(APPLE)
32
- set(FIREBASE_SDK_LIBDIR ${FIREBASE_CPP_SDK_DIR}/libs/darwin/universal)
+ if(IOS)
33
+ set(FIREBASE_SDK_LIBDIR ${FIREBASE_CPP_SDK_DIR}/libs/ios/universal)
34
+ elseif(MACOS)
35
+ set(FIREBASE_SDK_LIBDIR ${FIREBASE_CPP_SDK_DIR}/libs/darwin/universal)
36
+ endif()
37
elseif(MSVC)
38
if(${CMAKE_CL_64})
39
set(MSVC_CPU x64)
0 commit comments