Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ jobs:
steps:
- checkout

- run:
name: Toolchain Versions
command: |
c++ --version && cmake --version && git --version && cat /etc/os-release
- run:
name: Cmake
command: |
Expand Down
4 changes: 1 addition & 3 deletions .circleci/dockerfile-test-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,7 @@ sep() {

sep
echo "version info"
g++ --version
cmake --version
cat /etc/os-release
c++ --version && cmake --version && git --version && cat /etc/os-release

sep
cmake \
Expand Down
8 changes: 3 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,7 @@ MusicXML Class Library

-----------------------------------------

![CircleCI](https://circleci.com/gh/webern/mx.svg?style=svg&circle-token=2f4d1a33a0825d9634b458a2306ed22482314661)

Badges seem to be [broken](https://github.com/github/markup/issues/224), go to the [CircleCI project](https://circleci.com/gh/webern/mx) for build status.

[![CircleCI](https://circleci.com/gh/webern/mx.svg?style=svg)](https://circleci.com/gh/webern/mx)

## Introduction

Expand All @@ -21,9 +18,10 @@ This project is a C++ library for working with MusicXML files. MusicXML files a
## Compiling

The project is tested with the following:
* Xcode 10.1 Apple LLVM version 10.0.0 (clang-1000.11.45.5)
* Clang (Xcode 10 and higher)
* g++ (Debian 6.3.0-18+deb9u1) 6.3.0 20170516
* cmake version 3.7.2
* MSVC2019

Visual Studio should be very close to working. A good first pull request would be to compile with VS and add the version to the list above.

Expand Down