You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm compiling for a "Generic" system (which will probably change as the CMake support in our toolchain improves), and I'm cross-compiling. So GNUInstallDirs is not included.
This breaks the next few lines break, because CMAKE_INSTALL_INCLUDEDIR was never set:
message(STATUS "PKGINCLUDEDIR is ${PKGINCLUDEDIR}")
I think it's best to include GNUInstallDirs unconditionally. Although I'm not sure how deployment on Windows works.
It's worth noting that our toolchain is using a GNU toolchain layout with /usr/local/include (but it's also using clang in MSVC compatibility mode to compile for Windows - similar to cygwin/mingw, except it's neither of those).
The text was updated successfully, but these errors were encountered:
I'm cross-compiling and getting the following:
This has to do with:
kissfft/CMakeLists.txt
Lines 104 to 110 in 8f47a67
I'm compiling for a "Generic" system (which will probably change as the CMake support in our toolchain improves), and I'm cross-compiling. So
GNUInstallDirs
is not included.This breaks the next few lines break, because
CMAKE_INSTALL_INCLUDEDIR
was never set:kissfft/CMakeLists.txt
Lines 112 to 117 in 8f47a67
I think it's best to include
GNUInstallDirs
unconditionally. Although I'm not sure how deployment on Windows works.It's worth noting that our toolchain is using a GNU toolchain layout with
/usr/local/include
(but it's also using clang in MSVC compatibility mode to compile for Windows - similar to cygwin/mingw, except it's neither of those).The text was updated successfully, but these errors were encountered: