diff --git a/CMakeLists.txt b/CMakeLists.txt index 91fc78a..93f41eb 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -25,7 +25,7 @@ include(CMakeDependentOption) project(gmio) set(GMIO_VERSION_MAJOR 0) set(GMIO_VERSION_MINOR 2) -set(GMIO_VERSION_PATCH 0) +set(GMIO_VERSION_PATCH 1) set(GMIO_VERSION ${GMIO_VERSION_MAJOR}.${GMIO_VERSION_MINOR}.${GMIO_VERSION_PATCH}) @@ -56,7 +56,7 @@ endif() option(GMIO_BUILD_STRICT_C90 "Build gmio library(and tests) with strict conformance to C90 standard" OFF) option(GMIO_BUILD_SHARED_LIBS "Build gmio as a shared library (DLL)" OFF) option(GMIO_BUILD_BENCHMARKS "Build performance benchmarks for the gmio library" OFF) -option(GMIO_BUILD_EXAMPLES "Build gmio examples" OFF) +option(GMIO_BUILD_EXAMPLES "Build gmio examples" OFF) option(GMIO_BUILD_TESTS_FAKE_SUPPORT "Build tests/fake_support target" OFF) if(CMAKE_C_COMPILER_IS_GCC_COMPATIBLE) option(GMIO_BUILD_TESTS_COVERAGE "Instrument testing code with code coverage" OFF) diff --git a/README.md b/README.md index 45d8727..d2657cf 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ [![Coverage Status](https://coveralls.io/repos/fougue/gmio/badge.svg?branch=master&service=github)](https://coveralls.io/github/fougue/gmio?branch=master) [![License](https://img.shields.io/badge/license-CeCILL--B-blue.svg)](http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html) -[![Version](https://img.shields.io/badge/version-v0.2.0-blue.svg?style=flat)](https://github.com/fougue/gmio/releases) +[![Version](https://img.shields.io/badge/version-v0.2.1-blue.svg?style=flat)](https://github.com/fougue/gmio/releases) C library for geometry input/output diff --git a/tests/fake_support/opencascade/TColStd_ListOfInteger.hxx b/tests/fake_support/opencascade/TColStd_ListOfInteger.hxx index 034b3af..e7dd54f 100644 --- a/tests/fake_support/opencascade/TColStd_ListOfInteger.hxx +++ b/tests/fake_support/opencascade/TColStd_ListOfInteger.hxx @@ -6,6 +6,7 @@ class TColStd_ListOfInteger { public: + TColStd_ListOfInteger() {} Standard_Boolean IsEmpty() const { return Standard_True; } int First() const { return -1; } };