diff options
-rw-r--r-- | appveyor.yml | 26 | ||||
-rwxr-xr-x | readme.md | 14 |
2 files changed, 34 insertions, 6 deletions
diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 00000000..63fc12d8 --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,26 @@ +branches: + only: + - master + +os: Visual Studio 2015 + +platform: + - x86 + - x64 + +configuration: + - Debug + - Release + +before_build: + - cmake -G"Visual Studio 10 2010" + +build: + project: ALL_BUILD.vcxproj + +#test_script: +# - Debug/flattests.exe + +#artifacts: +# - path: Release/flatc.exe +# name: flatc.exe @@ -1,8 +1,10 @@ -![logo](http://google.github.io/flatbuffers/fpl_logo_small.png) FlatBuffers [![Build Status](https://travis-ci.org/google/flatbuffers.svg?branch=master)](https://travis-ci.org/google/flatbuffers) +![logo](http://google.github.io/flatbuffers/fpl_logo_small.png) FlatBuffers =========== -**FlatBuffers** is an efficient cross platform serialization library for games and -other memory constrained apps. It allows you to directly access serialized data without -unpacking/parsing it first, while still having great forwards/backwards compatibility. +[![Build Status](https://travis-ci.org/google/flatbuffers.svg?branch=master)](https://travis-ci.org/google/flatbuffers) [![Build status](https://ci.appveyor.com/api/projects/status/yg5idd2fnusv1n10?svg=true)](https://ci.appveyor.com/project/gwvo/flatbuffers) + +**FlatBuffers** is an efficient cross platform serialization library for games and +other memory constrained apps. It allows you to directly access serialized data without +unpacking/parsing it first, while still having great forwards/backwards compatibility. **Go to our [landing page][] to browse our documentation.** @@ -11,7 +13,7 @@ unpacking/parsing it first, while still having great forwards/backwards compatib * Windows * MacOS X * Linux - + ## Supported programming languages * C++ * C# @@ -24,7 +26,7 @@ unpacking/parsing it first, while still having great forwards/backwards compatib *and many more in progress...* -## Contribution +## Contribution * [FlatBuffers Google Group][] to discuss FlatBuffers with other developers and users. * [FlatBuffers Issues Tracker][] to submit an issue. * [stackoverflow.com][] with [`flatbuffers` tag][] for any questions regarding FlatBuffers. |