-
Notifications
You must be signed in to change notification settings - Fork 296
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Header files and correspondent C sources that define functions recently added to public API moved from 'tools' directory to root * By default, install prefix is '/usr/local/', and header install path is '${PREFIX}/include/kissfft' * Added detection of external libraries like FFTW or libPNG Signed-off-by: Vasyl Gello <[email protected]>
- Loading branch information
1 parent
7811f7d
commit 2e2747c
Showing
13 changed files
with
533 additions
and
145 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
*.o | ||
*.swp | ||
*.so | ||
*.so.* | ||
*.a | ||
*.dylib | ||
test/testcpp | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
libdir=@CMAKE_INSTALL_FULL_LIBDIR@ | ||
includedir=@CMAKE_INSTALL_FULL_INCLUDEDIR@ | ||
prefix=@PKGCONFIG_KISSFFT_PREFIX@ | ||
libdir=@PKGCONFIG_KISSFFT_LIBDIR@ | ||
includedir=@PKGCONFIG_KISSFFT_INCLUDEDIR@ | ||
|
||
Name: kissfft | ||
Description: A Fast Fourier Transform (FFT) library that tries to Keep it Simple, Stupid | ||
Version: @kissfft_VERSION@ | ||
Version: @PKGCONFIG_KISSFFT_VERSION@ | ||
|
||
Libs: -L${libdir} -l@KISSFFT_OUTPUT_NAME@ | ||
Cflags: -I${includedir} @PKG_KISSFFT_DEFS@ | ||
Libs: @PKG_OPENMP@ -L${libdir} -l@KISSFFT_OUTPUT_NAME@ | ||
Cflags: -I@PKGCONFIG_KISSFFT_PKGINCLUDEDIR@ @PKG_KISSFFT_DEFS@ |
Oops, something went wrong.