Skip to content

Commit f88f750

Browse files
committed
bug fix in cmakelists
1 parent 6c0a7f2 commit f88f750

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ option(SAF_BUILD_EXAMPLES "Build SAF examples."
1010
option(SAF_BUILD_EXTRAS "Build SAF extras." OFF)
1111
option(SAF_ENABLE_SOFA_READER_MODULE "Enable the SAF SOFA READER module" OFF)
1212
option(SAF_ENABLE_TRACKER_MODULE "Enable the SAF TRACKER module" OFF)
13-
option(SAF_USE_INTEL_IPP "Use Intel IPP for the FFT, resampler, etc. OFF)
13+
option(SAF_USE_INTEL_IPP "Use Intel IPP for the FFT, resampler, etc." OFF)
1414
if (NOT SAF_PERFORMANCE_LIB)
1515
set(SAF_PERFORMANCE_LIB "SAF_USE_INTEL_MKL_LP64" CACHE STRING "Performance library for SAF to use.")
1616
endif()

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,9 +121,9 @@ make
121121
test/saf_test # To run the unit testing program
122122
```
123123

124-
Or for Visual Studio (e.g. 2017) users (using e.g. x64 Native Tools Command Prompt):
124+
Or for Visual Studio users (using e.g. x64 Native Tools Command Prompt for VS 2019):
125125
```
126-
cmake -S . -B build -G "Visual Studio 15 Win64"
126+
cmake -S . -B build -G "Visual Studio 16" -A x64
127127
cd build
128128
msbuild ALL_BUILD.vcxproj /p:Configuration=Release /m
129129
cd test/Release

0 commit comments

Comments
 (0)