Skip to content

Commit

Permalink
Corrected Windows instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
hbe72 committed May 14, 2018
1 parent 65633b0 commit 6b3aeb1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,11 @@ git clone https://github.com/hbe72/dsp.git
2. Build tests:
* Linux and Mac parallel with 8 cores
```
cmake --build . --target Tests -- j 8
cmake --build . --target tests -- -j8
```
* Windows
```
cmake --build . --target Tests
cmake --build . --target test/tests
```
3. Run the tests
```
Expand Down
4 changes: 2 additions & 2 deletions test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ set(sample_cdsp_sources
virtual_float.cpp)

include(CTest)
add_custom_target(Tests)
add_custom_target(tests)

foreach(source ${sample_cdsp_sources})
string(REPLACE "\." "_" target "${source}")
Expand All @@ -75,5 +75,5 @@ foreach(source ${sample_cdsp_sources})
${target} PRIVATE
$<BUILD_INTERFACE:${PROJECT_SOURCE_DIR}/include>
$<INSTALL_INTERFACE:include>)
add_dependencies(Tests "${target}")
add_dependencies(tests "${target}")
endforeach(source)

0 comments on commit 6b3aeb1

Please sign in to comment.