We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad6bdaa commit 2f573bbCopy full SHA for 2f573bb
CMakeLists.txt
@@ -1,8 +1,8 @@
1
cmake_minimum_required(VERSION 3.1.0)
2
3
-project(kiss-fft VERSION 1.2.0 LANGUAGES CXX)
+project(kiss-fft VERSION 2.0.0 LANGUAGES CXX)
4
5
-set (CMAKE_CXX_STANDARD 11)
+set(CMAKE_CXX_STANDARD 11)
6
set(CMAKE_POSITION_INDEPENDENT_CODE ON)
7
8
if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES)
README.md
@@ -84,7 +84,7 @@ The library is so small that you can directly include the sources in your
84
project or you can pre-package it as a static library and then link it
85
into your project. Create the static library (with the help of cmake):
86
```
87
-cmake . -DCMAKE_BUILD_TYPE=RelWithDebInfo
+cmake .
88
make
89
make install
90
0 commit comments