Skip to content

Commit

Permalink
Rename
Browse files Browse the repository at this point in the history
  • Loading branch information
audioplastic committed May 24, 2016
1 parent 2614ac9 commit 65af94a
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 2.8.11) #for target_include_directories
project(decibelly)
project(cppci)

option(BUILD_TESTS "Build all tests." ON)
option(COVERALLS "Turn on coveralls support" OFF) #better than pyton version as no sudo pip install is neededtouch sr
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
Decibelly ![Language (C++)](https://img.shields.io/badge/powered_by-C++-blue.svg?style=flat)
C++ CI and coverage demo ![Language (C++)](https://img.shields.io/badge/powered_by-C++-blue.svg?style=flat)
=========

Wooshy acoustic tools


| CI Service | Status |
| :--- | :--- |
| Travis - OSX/clang | [![Travis Status](https://travis-ci.org/audioplastic/decibelly.svg?branch=master)](https://travis-ci.org/audioplastic/decibelly) |
| Circle - Ubuntu/g++ | [![Circle Status](https://circleci.com/gh/audioplastic/decibelly.png)](https://circleci.com/gh/audioplastic/decibelly) |
| Appveyor - Windows/MSVC | [![Appveyor Status](https://ci.appveyor.com/api/projects/status/github/audioplastic/decibelly)](https://ci.appveyor.com/project/audioplastic/decibelly) |
| Travis - OSX/clang | [![Travis Status](https://travis-ci.org/audioplastic/cpp-CI-and-coverage.svg?branch=master)](https://travis-ci.org/audioplastic/cpp-CI-and-coverage) |
| Circle - Ubuntu/g++ | [![Circle Status](https://circleci.com/gh/audioplastic/cpp-CI-and-coverage.png)](https://circleci.com/gh/audioplastic/cpp-CI-and-coverage) |
| Appveyor - Windows/MSVC | [![Appveyor Status](https://ci.appveyor.com/api/projects/status/github/audioplastic/cpp-CI-and-coverage)](https://ci.appveyor.com/project/audioplastic/cpp-CI-and-coverage) |


| Coverage Service | Status |
| :--- | :--- |
| Codecov via Circle CI | [![codecov](https://codecov.io/gh/audioplastic/decibelly/branch/master/graph/badge.svg)](https://codecov.io/gh/audioplastic/decibelly) |
| Coveralls via Travis CI | [![Coverage Status](https://coveralls.io/repos/github/audioplastic/decibelly/badge.svg?branch=master)](https://coveralls.io/github/audioplastic/decibelly?branch=master) |
| Codecov via Circle CI | [![codecov](https://codecov.io/gh/audioplastic/cpp-CI-and-coverage/branch/master/graph/badge.svg)](https://codecov.io/gh/audioplastic/cpp-CI-and-coverage) |
| Coveralls via Travis CI | [![Coverage Status](https://coveralls.io/repos/github/audioplastic/cpp-CI-and-coverage/badge.svg?branch=master)](https://coveralls.io/github/audioplastic/cpp-CI-and-coverage?branch=master) |


2 changes: 1 addition & 1 deletion src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ set(LIB_SRC
adder.h
)

add_library(decibelly ${LIB_SRC})
add_library(adder ${LIB_SRC})
6 changes: 3 additions & 3 deletions src/adder.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
// Created by Nick on 20/05/2016.
//

#ifndef DECIBELLY_ADDER_H
#define DECIBELLY_ADDER_H
#ifndef CPPCI_ADDER_H
#define CPPCI_ADDER_H


class adder {
Expand All @@ -16,4 +16,4 @@ class adder {
};


#endif //DECIBELLY_ADDER_H
#endif //CPPCI_ADDER_H
2 changes: 1 addition & 1 deletion test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ add_executable( ${PROJECT_TEST_NAME}
demo_test.cpp
)

target_link_libraries(${PROJECT_TEST_NAME} gtest gtest_main decibelly)
target_link_libraries(${PROJECT_TEST_NAME} gtest gtest_main adder)
target_include_directories(${PROJECT_TEST_NAME} PUBLIC ${CMAKE_SOURCE_DIR}/src)

add_test( NAME runtests
Expand Down

0 comments on commit 65af94a

Please sign in to comment.