Re: [CMake] providing host binary and target library cmake-package when cross compiling

2015-10-19 Thread Owen Alanzo Hogarth
This is the entire project as it stands right now. I have tried changing from using relative to more absolute directory names in my project but I still get the same build errors. This pastebin has all the relevant code: http://pastebin.com/BnVTnegP Anyone can see anything wrong with this? On

[CMake] providing host binary and target library cmake-package when cross compiling

2015-10-19 Thread Pascal Bach
Hello I'm working on CMake support for Apache Thrift [1]. It is currently already buildable using CMake. However while trying to add support for generating a ThriftConfig.cmake I ran into some issues related to cross compilation. Thrift has the following components relevant to the problem: C++

Re: [CMake] providing host binary and target library cmake-package when cross compiling

2015-10-19 Thread Pascal Bach
Sorry I don't see how this relates to my question? On Mon, Oct 19, 2015 at 5:33 PM, Owen Alanzo Hogarth wrote: > This is the entire project as it stands right now. I have tried changing > from using relative to more absolute directory names in my project but I > still get

Re: [CMake] providing host binary and target library cmake-package when cross compiling

2015-10-19 Thread Hendrik Sattler
You didn't answer my points b and c, only a. Am 19. Oktober 2015 18:45:25 MESZ, schrieb Owen Alanzo Hogarth : >this is not an in source build. > >to do matrix vector multiplication matrix module needs to have access >to >the vector class. > > >I'll add the source code for

Re: [CMake] providing host binary and target library cmake-package when cross compiling

2015-10-19 Thread Hendrik Sattler
Am 19. Oktober 2015 17:33:55 MESZ, schrieb Owen Alanzo Hogarth : >This is the entire project as it stands right now. I have tried >changing >from using relative to more absolute directory names in my project but >I >still get the same build errors. > >This pastebin has all

Re: [CMake] providing host binary and target library cmake-package when cross compiling

2015-10-19 Thread Owen Alanzo Hogarth
this is not an in source build. to do matrix vector multiplication matrix module needs to have access to the vector class. I'll add the source code for these modules here: http://pastebin.com/aj01ycRQ I think the structure should be a little clearer with all that I've provided. This is the