Skip to content

Commit

Permalink
Renamed include directory (hbe72#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
hbe72 authored Nov 13, 2018
1 parent 18b2f90 commit fa1a73f
Show file tree
Hide file tree
Showing 21 changed files with 32 additions and 32 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ git clone https://github.com/hbe72/cdsp.git
```
mkdir build
cd build
cmake /some/directory/cdsp -DCMAKE_INSTALL_PREFIX=/directory/to/install
cmake /some/directory/cdsp -DCMAKE_INSTALL_PREFIX=/directory/to/install -DCMAKE_BUILD_TYPE=Release
```
2. Build tests:
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
#include <limits>
#include <vector>

#include <dsp/complex.h>
#include <dsp/virtual_float.h>
#include <dsp/dsp_math.h>
#include <dsp/trig.h>
#include "complex.h"
#include "virtual_float.h"
#include "dsp_math.h"
#include "trig.h"

namespace cdsp
{
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions test/basic_math.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
// http://www.boost.org/LICENSE_1_0.txt)
#include <gtest/gtest.h>

#include <dsp/dsp_types.h>
#include <dsp/dsp_math.h>
#include <cdsp/dsp_types.h>
#include <cdsp/dsp_math.h>

#include <cnl/_impl/type_traits/assert_same.h>
#include <cnl/_impl/type_traits/identical.h>
Expand Down
4 changes: 2 additions & 2 deletions test/biquad.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
// (See accompanying file ../../LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
#include <gtest/gtest.h>
#include "dsp/dsp_types.h"
#include "dsp/biquad.h"
#include "cdsp/dsp_types.h"
#include "cdsp/biquad.h"

static constexpr double biquad_double_accuracy = 0.0000001;
static constexpr double biquad_fix_accuracy = 0.00001;
Expand Down
4 changes: 2 additions & 2 deletions test/biquad_cascade.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

#include <gtest/gtest.h>

#include <dsp/dsp_types.h>
#include <dsp/biquad_cascade.h>
#include <cdsp/dsp_types.h>
#include <cdsp/biquad_cascade.h>

static const double biquad_double_accuracy = 0.0000001;
static const double biquad_fix_accuracy = 0.00001;
Expand Down
4 changes: 2 additions & 2 deletions test/complex.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
// http://www.boost.org/LICENSE_1_0.txt)
#include <gtest/gtest.h>

#include <dsp/dsp_types.h>
#include <dsp/complex.h>
#include <cdsp/dsp_types.h>
#include <cdsp/complex.h>

TEST(complex, basic)
{
Expand Down
8 changes: 4 additions & 4 deletions test/complex_vector.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
// http://www.boost.org/LICENSE_1_0.txt)
#include <gtest/gtest.h>

#include <dsp/dsp_types.h>
#include <dsp/complex.h>
#include <dsp/complex_vector.h>
#include <dsp/virtual_float.h>
#include <cdsp/dsp_types.h>
#include <cdsp/complex.h>
#include <cdsp/complex_vector.h>
#include <cdsp/virtual_float.h>


TEST(complex_vector, vector)
Expand Down
10 changes: 5 additions & 5 deletions test/fft.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@

#include <gtest/gtest.h>

#include "dsp/complex.h"
#include "dsp/complex_vector.h"
#include "dsp/fft.h"
#include "dsp/dsp_types.h"
#include "dsp/dsp_math.h"
#include "cdsp/complex.h"
#include "cdsp/complex_vector.h"
#include "cdsp/fft.h"
#include "cdsp/dsp_types.h"
#include "cdsp/dsp_math.h"

#define FFT_DOUBLE_ACCURACY 0.00000000001
#define FFT_Q4_20_ACCURACY 0.00001
Expand Down
8 changes: 4 additions & 4 deletions test/stft.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@

#include <gtest/gtest.h>

#include "dsp/dsp_types.h"
#include "dsp/dsp_math.h"
#include "cdsp/dsp_types.h"
#include "cdsp/dsp_math.h"

#include "dsp/complex_vector.h"
#include "dsp/stft.h"
#include "cdsp/complex_vector.h"
#include "cdsp/stft.h"

#define STFT_DOUBLE_ACCURACY 0.00000000001
#define STFT_Q4_20_ACCURACY 0.0006
Expand Down
6 changes: 3 additions & 3 deletions test/trig.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
#include <vector>
#include <gtest/gtest.h>

#include "dsp/dsp_types.h"
#include "dsp/dsp_math.h"
#include "dsp/trig.h"
#include "cdsp/dsp_types.h"
#include "cdsp/dsp_math.h"
#include "cdsp/trig.h"

static constexpr double trig_accuracy = 1e-15;
static constexpr double trig_interpolation_accuracy = 1e-7;
Expand Down
6 changes: 3 additions & 3 deletions test/virtual_float.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@

#include <gtest/gtest.h>

#include <dsp/complex.h>
#include <dsp/dsp_types.h>
#include <dsp/virtual_float.h>
#include <cdsp/complex.h>
#include <cdsp/dsp_types.h>
#include <cdsp/virtual_float.h>

TEST(virtual_float, creation)
{
Expand Down

0 comments on commit fa1a73f

Please sign in to comment.