Skip to content

Commit

Permalink
Now requires C++14 (#116)
Browse files Browse the repository at this point in the history
Fixes #109
  • Loading branch information
asmaloney committed Oct 4, 2022
1 parent ab601d9 commit abe95bc
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format

## 3.0.0 (in progress)

### Changed

- Now requires a C++14 compatible compiler.

## [2.3.0](https://github.com/asmaloney/libE57Format/releases/tag/v2.3.0) - 2022-10-04

### Added
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ include( ClangFormat )
# Target properties
set_target_properties( E57Format
PROPERTIES
CXX_STANDARD 11
CXX_STANDARD 14
CXX_STANDARD_REQUIRED YES
CXX_EXTENSIONS NO
DEBUG_POSTFIX "-d"
Expand Down
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ A library to provide read & write support for the E57 file format.

This is a fork of [E57RefImpl](https://sourceforge.net/projects/e57-3d-imgfmt/) v1.1.332. The original source is from [E57RefImpl 1.1.332](https://sourceforge.net/projects/e57-3d-imgfmt/files/E57Refimpl-src/) and then everything was stripped out except the main implementation for reading and writing E57.

This version also removes the dependency on [Boost](http://www.boost.org/) and requires C++11.
This version also removes the dependency on [Boost](http://www.boost.org/) and - as of version 3.0 - requires [C++14](https://en.cppreference.com/w/cpp/14). (libE57Format version 2.x required [C++11](https://en.cppreference.com/w/cpp/11).)

Many, many other changes were made prior to the first release of this fork. See the [CHANGELOG](CHANGELOG.md) and git history for details.

Expand Down Expand Up @@ -45,7 +45,11 @@ Since the original fork, [Jiri Hörner](https://github.com/ptc-jhoerner) has add
[Xerces-C++](https://xerces.apache.org/xerces-c/) validating XML parser is needed at runtime and
[clang-format](https://clang.llvm.org/docs/ClangFormat.html) for checking C++ formatting.

Ubuntu 20.04 (bionic): `$ sudo apt install libxerces-c-dev clang-format`
Linux (Ubuntu):

```sh
$ sudo apt install libxerces-c-dev clang-format
```

## License

Expand Down

0 comments on commit abe95bc

Please sign in to comment.