Re: [CMake] How to find dll's on Cygwin? (fwd)

2017-10-28 Thread Alan W. Irwin
On 2017-10-28 16:44+0200 Marco Atzeri wrote: On 28/10/2017 05:38, Alan W. Irwin wrote: On 2017-10-27 22:31+0200 Marco Atzeri wrote: On 27/10/2017 09:32, Alan W. Irwin wrote: Our understanding is the Cygwin naming convention for the various kinds of libraries would be (in the gnat library ca

Re: [CMake] How to find dll's on Cygwin? (fwd)

2017-10-28 Thread Marco Atzeri
On 28/10/2017 05:38, Alan W. Irwin wrote: On 2017-10-27 22:31+0200 Marco Atzeri wrote: On 27/10/2017 09:32, Alan W. Irwin wrote: Our understanding is the Cygwin naming convention for the various kinds of libraries would be (in the gnat library case) dll   cyggnat-6.dll import lib

Re: [CMake] How to find dll's on Cygwin? (fwd)

2017-10-28 Thread Clément Gregoire
Hi, I think you are looking for fixup_bundle if you are missing DLLs at install. There's no real need to look for the DLLs yourself. Lectem Le sam. 28 oct. 2017 à 08:18, Hendrik Sattler a écrit : > Hi, > > looking at the location of the gnat static library, it seems to be a > compiler library

Re: [CMake] How to find dll's on Cygwin? (fwd)

2017-10-27 Thread Hendrik Sattler
Hi, looking at the location of the gnat static library, it seems to be a compiler library like libm. You usually do not use find_package on those but directly use -lgnat and the compiler knows how to find it. Requesting static linking will also work then. HS Am 28. Oktober 2017 05:38:19 MESZ

Re: [CMake] How to find dll's on Cygwin? (fwd)

2017-10-27 Thread Alan W. Irwin
On 2017-10-27 22:31+0200 Marco Atzeri wrote: On 27/10/2017 09:32, Alan W. Irwin wrote: I am pretty sure there are a non-zero number of CMake users here who have had CMake experience finding dll's on Cygwin (since it appears from the quote below that import libraries can be replaced by dll's for

Re: [CMake] How to find dll's on Cygwin? (fwd)

2017-10-27 Thread Marco Atzeri
On 27/10/2017 09:32, Alan W. Irwin wrote: I am pretty sure there are a non-zero number of CMake users here who have had CMake experience finding dll's on Cygwin (since it appears from the quote below that import libraries can be replaced by dll's for the purposes of linking on that platform).  So

[CMake] How to find dll's on Cygwin? (fwd)

2017-10-27 Thread Alan W. Irwin
I am pretty sure there are a non-zero number of CMake users here who have had CMake experience finding dll's on Cygwin (since it appears from the quote below that import libraries can be replaced by dll's for the purposes of linking on that platform). So if you are one with such experience, I wou