We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Right now the install step on windows copies files to the root of your file system.
CMAKE_INSTALL_PREFIX is ignored for all files but the lib. That is because CMAKE_INSTALL_* variables are empty.
This has to do with:
kissfft/CMakeLists.txt
Lines 104 to 110 in 8f47a67
GNUInstallDirs should be included unconditionally. That is what most projects do. See glfw, portaudio, SQLiteCPP.
Otherwise one cannot use the install step on windows.
The text was updated successfully, but these errors were encountered:
fixed mborgerding#73
8b8e199
No branches or pull requests
Right now the install step on windows copies files to the root of your file system.
CMAKE_INSTALL_PREFIX is ignored for all files but the lib.
That is because CMAKE_INSTALL_* variables are empty.
This has to do with:
kissfft/CMakeLists.txt
Lines 104 to 110 in 8f47a67
GNUInstallDirs should be included unconditionally. That is what most projects do. See glfw, portaudio, SQLiteCPP.
Otherwise one cannot use the install step on windows.
The text was updated successfully, but these errors were encountered: