File tree Expand file tree Collapse file tree 8 files changed +7
-16
lines changed Expand file tree Collapse file tree 8 files changed +7
-16
lines changed Original file line number Diff line number Diff line change @@ -44,8 +44,6 @@ option(FIREBASE_CPP_BUILD_TESTS
44
44
"Enable the Firebase C++ Build Tests." OFF )
45
45
option (FIREBASE_FORCE_FAKE_SECURE_STORAGE
46
46
"Disable use of platform secret store and use fake impl." OFF )
47
- option (FIREBASE_INSTANCE_ID_DESKTOP
48
- "Use the experimental Instance Id desktop implementation." OFF )
49
47
50
48
if (WIN32 )
51
49
# Turn on the use of the __cplusplus compiler define that is used to detect if
Original file line number Diff line number Diff line change @@ -382,9 +382,7 @@ endif()
382
382
if (NOT ANDROID AND NOT IOS )
383
383
# Add the rest subdirectory, so that other libraries can access it
384
384
add_subdirectory (rest )
385
- if (FIREBASE_INSTANCE_ID_DESKTOP )
386
- add_subdirectory (instance_id )
387
- endif ()
385
+ add_subdirectory (instance_id )
388
386
endif ()
389
387
390
388
if (FIREBASE_CPP_BUILD_TESTS )
Original file line number Diff line number Diff line change 56
56
"${desktop_SRCS} " )
57
57
endif ()
58
58
59
- if (ANDROID OR IOS OR use_stub OR NOT FIREBASE_INSTANCE_ID_DESKTOP )
59
+ if (ANDROID OR IOS OR use_stub )
60
60
set (additional_link_LIB )
61
61
else ()
62
62
set (additional_link_LIB
Original file line number Diff line number Diff line change @@ -82,14 +82,9 @@ else()
82
82
${FLATBUFFERS_SOURCE_DIR} /include
83
83
${NANOPB_INCLUDE_DIRS}
84
84
${PROJECT_BINARY_DIR} /.. )
85
- if (FIREBASE_INSTANCE_ID_DESKTOP )
86
- set (iid_desktop firebase_instance_id_desktop_impl )
87
- else ()
88
- set (iid_desktop )
89
- endif ()
90
85
set (additional_link_LIB
91
86
firebase_rest_lib
92
- ${iid_desktop}
87
+ firebase_instance_id_desktop_impl
93
88
flatbuffers )
94
89
endif ()
95
90
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ cd linux_build
27
27
28
28
# Configure cmake with tests enabled
29
29
# and disable use of libsecret due to not working on kokoro builders
30
- cmake .. -DFIREBASE_CPP_BUILD_TESTS=ON -DFIREBASE_FORCE_FAKE_SECURE_STORAGE=ON -DFIREBASE_INSTANCE_ID_DESKTOP=ON
30
+ cmake .. -DFIREBASE_CPP_BUILD_TESTS=ON -DFIREBASE_FORCE_FAKE_SECURE_STORAGE=ON
31
31
32
32
# Build the SDK and the tests
33
33
cmake --build .
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ cd mac_x64_build
27
27
28
28
# Configure cmake with tests enabled
29
29
# and disable use of libsecret due to not working on kokoro builders
30
- cmake .. -DFIREBASE_CPP_BUILD_TESTS=ON -DFIREBASE_FORCE_FAKE_SECURE_STORAGE=ON -DFIREBASE_INSTANCE_ID_DESKTOP=ON
30
+ cmake .. -DFIREBASE_CPP_BUILD_TESTS=ON -DFIREBASE_FORCE_FAKE_SECURE_STORAGE=ON
31
31
32
32
# Build the SDK and the tests
33
33
cmake --build .
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ EXIT /B %status%
47
47
mkdir windows_%~1
48
48
pushd windows_%~1
49
49
50
- cmake .. -DFIREBASE_CPP_BUILD_TESTS=ON -DFIREBASE_INSTANCE_ID_DESKTOP=ON - DPROTOBUF_SRC_ROOT_FOLDER=%PROTOBUF_SRC_ROOT_FOLDER% -DOPENSSL_ROOT_DIR=" %~2 " %~3
50
+ cmake .. -DFIREBASE_CPP_BUILD_TESTS=ON -DPROTOBUF_SRC_ROOT_FOLDER=%PROTOBUF_SRC_ROOT_FOLDER% -DOPENSSL_ROOT_DIR=" %~2 " %~3
51
51
52
52
:: Check for errors, and return if there were any
53
53
if %errorlevel% neq 0 (
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ EXIT /B %status%
47
47
mkdir windows_%~1
48
48
pushd windows_%~1
49
49
50
- cmake .. -DFIREBASE_CPP_BUILD_TESTS=ON -DFIREBASE_INSTANCE_ID_DESKTOP=ON - DPROTOBUF_SRC_ROOT_FOLDER=%PROTOBUF_SRC_ROOT_FOLDER% -DOPENSSL_ROOT_DIR=" %~2 " %~3
50
+ cmake .. -DFIREBASE_CPP_BUILD_TESTS=ON -DPROTOBUF_SRC_ROOT_FOLDER=%PROTOBUF_SRC_ROOT_FOLDER% -DOPENSSL_ROOT_DIR=" %~2 " %~3
51
51
52
52
:: Check for errors, and return if there were any
53
53
if %errorlevel% neq 0 (
You can’t perform that action at this time.
0 commit comments