From cac2c3ff7aa7b94e3776bb1282765ca78be977ae Mon Sep 17 00:00:00 2001 From: zxu Date: Wed, 17 Jan 2018 13:18:54 -0500 Subject: implement FieldValue for null, boolean, and array in C++. (#637) * implement FieldValue for null and boolean. * refactoring to use union type instead of poly * refactor using union design intead of poly * refactoring to use anonymous union and fix styles * small fix * add field_value_test to the project * fix warning of cmake and fix style --- Firestore/core/CMakeLists.txt | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'Firestore/core/CMakeLists.txt') diff --git a/Firestore/core/CMakeLists.txt b/Firestore/core/CMakeLists.txt index 9291fbd..da08dfc 100644 --- a/Firestore/core/CMakeLists.txt +++ b/Firestore/core/CMakeLists.txt @@ -12,8 +12,10 @@ # See the License for the specific language governing permissions and # limitations under the License. -add_subdirectory(src/firebase/firestore/util) +add_subdirectory(src/firebase/firestore/model) add_subdirectory(src/firebase/firestore/remote) +add_subdirectory(src/firebase/firestore/util) -add_subdirectory(test/firebase/firestore/util) +add_subdirectory(test/firebase/firestore/model) add_subdirectory(test/firebase/firestore/remote) +add_subdirectory(test/firebase/firestore/util) -- cgit v1.2.3