File tree Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -89,14 +89,23 @@ if(NOT APPLE AND NOT ANDROID AND UNIX)
89
89
pkg_check_modules (LIBSECRET libsecret-1 )
90
90
91
91
if (NOT LIBSECRET_FOUND )
92
- message (WARNING "Unable to find libsecret, which is needed by \
93
- Authentication's desktop implementation. \
92
+ message (WARNING "Unable to find libsecret, which is needed by Linux \
93
+ desktop implementations of Auth, Instance ID, and \
94
+ Remote Config. \
94
95
It can be installed on supported systems via: \
95
96
apt-get install libsecret-1-dev" )
96
97
else ()
97
98
set_target_properties (firebase_auth PROPERTIES
98
99
INTERFACE_INCLUDE_DIRECTORIES "${LIBSECRET_INCLUDE_DIRS} "
99
100
INTERFACE_LINK_LIBRARIES "${LIBSECRET_LIBRARIES} "
100
101
)
102
+ set_target_properties (firebase_instance_id PROPERTIES
103
+ INTERFACE_INCLUDE_DIRECTORIES "${LIBSECRET_INCLUDE_DIRS} "
104
+ INTERFACE_LINK_LIBRARIES "${LIBSECRET_LIBRARIES} "
105
+ )
106
+ set_target_properties (firebase_remote_config PROPERTIES
107
+ INTERFACE_INCLUDE_DIRECTORIES "${LIBSECRET_INCLUDE_DIRS} "
108
+ INTERFACE_LINK_LIBRARIES "${LIBSECRET_LIBRARIES} "
109
+ )
101
110
endif ()
102
111
endif ()
You can’t perform that action at this time.
0 commit comments