[prev in list] [next in list] [prev in thread] [next in thread] 

List:       cmake
Subject:    Re: [CMake] C++11 flag not being added
From:       Pau Garcia i Quiles <pgquiles () elpauer ! org>
Date:       2015-10-16 9:26:00
Message-ID: CAKcBoktoR=tAeNKH2V8gUXRA9J0QEo1a+6ObS8b_uYXt+bzD0A () mail ! gmail ! com
[Download RAW message or body]

[Attachment #2 (multipart/alternative)]


Hello,

CMake 3.3.1 is available from my PPA, in case it helps:

https://launchpad.net/~pgquiles/+archive/ubuntu/ppa



On Fri, Oct 16, 2015 at 10:58 AM, Petr Bena <benapetr@gmail.com> wrote:

> If I did that nearly nobody would be able to compile my program as
> cmake >= 3.1 is extremely rare on most distributions. Even ubuntu's
> PPA builder has some ancient version.
>
> On Fri, Oct 16, 2015 at 9:44 AM, Petr Kmoch <petr.kmoch@gmail.com> wrote:
> > Hi Petr.
> >
> > You're using a feature (`CMAKE_CXX_STANDARD`) introduced in CMake version
> > 3.1, so you should require a minimum version >= that.
> >
> > You can learn the version of CMake by running `cmake --version`
> >
> > Petr
> >
> > On Thu, Oct 15, 2015 at 5:45 PM, Petr Bena <benapetr@gmail.com> wrote:
> >>
> >> What do you mean by "target" property? I don't see any target
> >> mentioned there. I don't have this line in there. I don't know which
> >> CMake this is, it failed on server we use for unit tests, but I have
> >> required min. version set to 2.8.7
> >>
> >>
> >>
> >> On Thu, Oct 15, 2015 at 5:41 PM, Matthew S Wallace
> >> <mwallace@ccmtrading.com> wrote:
> >> > What version of CMake are you using?  I'm using 3.3.2.  The only other
> >> > thing I did was:
> >> >
> >> > set_property(GLOBAL PROPERTY CXX_STANDARD_REQUIRED)
> >> >
> >> > I'm guessing this probably does nothing since it is probably a target
> >> > property.
> >> >
> >> > -Matt
> >> >
> >> >> On Oct 15, 2015, at 10:34 AM, Petr Bena <benapetr@gmail.com> wrote:
> >> >>
> >> >> Can you elaborate on it a bit?
> >> >>
> >> >> I put set(CMAKE_CXX_STANDARD 11) as first line of my CMakeLists and
> it
> >> >> still doesn't work, without the hack I used I get errors while
> >> >> compiling.
> >> >>
> >> >> Can you give me example file in which it works? I guess there is more
> >> >> needed for it to work.
> >> >>
> >> >> On Tue, Oct 13, 2015 at 7:12 PM, Matthew S Wallace
> >> >> <mwallace@ccmtrading.com> wrote:
> >> >>> Thanks, setting the global variable solved my issue.
> >> >>>
> >> >>> -Matt
> >> >>>
> >> >>>> On Oct 13, 2015, at 10:46 AM, Johannes Zarl-Zierl
> >> >>>> <johannes.zarl-zierl@jku.at> wrote:
> >> >>>>
> >> >>>> Hi,
> >> >>>>
> >> >>>> CXX_STANDARD is a target property, not a global one. You can either
> >> >>>> set
> >> >>>> CXX_STANDARD for every target that needs it, or set it globally by
> >> >>>> changing
> >> >>>> the default value.
> >> >>>>
> >> >>>> You can do the latter by setting the variable CMAKE_CXX_STANDARD
> >> >>>> before
> >> >>>> defining any target that depends on it:
> >> >>>>
> >> >>>> set(CMAKE_CXX_STANDARD 11)
> >> >>>>
> >> >>>> HTH,
> >> >>>> Johannes
> >> >>>>
> >> >>>> On Tuesday 13 October 2015 10:22:36 Matthew S Wallace wrote:
> >> >>>>> I have the following two lines in my CMakeLists.txt
> >> >>>>>
> >> >>>>> set_property(GLOBAL PROPERTY CXX_STANDARD 11)
> >> >>>>> set_property(GLOBAL PROPERTY CXX_STANDARD_REQUIRED)
> >> >>>>>
> >> >>>>> However when compiling some of my source files, the -std=c++11
> flag
> >> >>>>> is not
> >> >>>>> added.
> >> >>>>>
> >> >>>>> Just for good measure I added:
> >> >>>>> target_compile_features(my_target PRIVATE cxx_strong_enums) to the
> >> >>>>> target
> >> >>>>> that was having the problem.
> >> >>>>>
> >> >>>>> Not sure if it matters, but in this case the compile error I'm
> >> >>>>> getting is
> >> >>>>> complaining because I'm referencing a fully scoped enum.  If I
> >> >>>>> explicitly
> >> >>>>> include -std=c++11 in my compile flags, everything works.
> >> >>>>>
> >> >>>>> I'm thinking I'm probably just misunderstanding how CXX_STANDARD
> >> >>>>> works, but
> >> >>>>> any help would be appreciated.
> >> >>>>>
> >> >>>>> -Matt
> >> >>>>
> >> >>>> --
> >> >>>>
> >> >>>> Powered by www.kitware.com
> >> >>>>
> >> >>>> Please keep messages on-topic and check the CMake FAQ at:
> >> >>>> http://www.cmake.org/Wiki/CMake_FAQ
> >> >>>>
> >> >>>> Kitware offers various services to support the CMake community. For
> >> >>>> more information on each offering, please visit:
> >> >>>>
> >> >>>> CMake Support: http://cmake.org/cmake/help/support.html
> >> >>>> CMake Consulting: http://cmake.org/cmake/help/consulting.html
> >> >>>> CMake Training Courses: http://cmake.org/cmake/help/training.html
> >> >>>>
> >> >>>> Visit other Kitware open-source projects at
> >> >>>> http://www.kitware.com/opensource/opensource.html
> >> >>>>
> >> >>>> Follow this link to subscribe/unsubscribe:
> >> >>>> http://public.kitware.com/mailman/listinfo/cmake
> >> >>>
> >> >>> --
> >> >>>
> >> >>> Powered by www.kitware.com
> >> >>>
> >> >>> Please keep messages on-topic and check the CMake FAQ at:
> >> >>> http://www.cmake.org/Wiki/CMake_FAQ
> >> >>>
> >> >>> Kitware offers various services to support the CMake community. For
> >> >>> more information on each offering, please visit:
> >> >>>
> >> >>> CMake Support: http://cmake.org/cmake/help/support.html
> >> >>> CMake Consulting: http://cmake.org/cmake/help/consulting.html
> >> >>> CMake Training Courses: http://cmake.org/cmake/help/training.html
> >> >>>
> >> >>> Visit other Kitware open-source projects at
> >> >>> http://www.kitware.com/opensource/opensource.html
> >> >>>
> >> >>> Follow this link to subscribe/unsubscribe:
> >> >>> http://public.kitware.com/mailman/listinfo/cmake
> >> >
> >> --
> >>
> >> Powered by www.kitware.com
> >>
> >> Please keep messages on-topic and check the CMake FAQ at:
> >> http://www.cmake.org/Wiki/CMake_FAQ
> >>
> >> Kitware offers various services to support the CMake community. For more
> >> information on each offering, please visit:
> >>
> >> CMake Support: http://cmake.org/cmake/help/support.html
> >> CMake Consulting: http://cmake.org/cmake/help/consulting.html
> >> CMake Training Courses: http://cmake.org/cmake/help/training.html
> >>
> >> Visit other Kitware open-source projects at
> >> http://www.kitware.com/opensource/opensource.html
> >>
> >> Follow this link to subscribe/unsubscribe:
> >> http://public.kitware.com/mailman/listinfo/cmake
> >
> >
> --
>
> Powered by www.kitware.com
>
> Please keep messages on-topic and check the CMake FAQ at:
> http://www.cmake.org/Wiki/CMake_FAQ
>
> Kitware offers various services to support the CMake community. For more
> information on each offering, please visit:
>
> CMake Support: http://cmake.org/cmake/help/support.html
> CMake Consulting: http://cmake.org/cmake/help/consulting.html
> CMake Training Courses: http://cmake.org/cmake/help/training.html
>
> Visit other Kitware open-source projects at
> http://www.kitware.com/opensource/opensource.html
>
> Follow this link to subscribe/unsubscribe:
> http://public.kitware.com/mailman/listinfo/cmake
>



-- 
Pau Garcia i Quiles
http://www.elpauer.org
(Due to my workload, I may need 10 days to answer)

[Attachment #5 (text/html)]

<div dir="ltr">Hello,<div><br></div><div>CMake 3.3.1 is available from my PPA, in \
case it helps:</div><div><br></div><div><a \
href="https://launchpad.net/~pgquiles/+archive/ubuntu/ppa">https://launchpad.net/~pgquiles/+archive/ubuntu/ppa</a><br></div><div><br></div><div><br></div></div><div \
class="gmail_extra"><br><div class="gmail_quote">On Fri, Oct 16, 2015 at 10:58 AM, \
Petr Bena <span dir="ltr">&lt;<a href="mailto:benapetr@gmail.com" \
target="_blank">benapetr@gmail.com</a>&gt;</span> wrote:<br><blockquote \
class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc \
solid;padding-left:1ex">If I did that nearly nobody would be able to compile my \
program as<br> cmake &gt;= 3.1 is extremely rare on most distributions. Even \
ubuntu&#39;s<br> PPA builder has some ancient version.<br>
<div class="HOEnZb"><div class="h5"><br>
On Fri, Oct 16, 2015 at 9:44 AM, Petr Kmoch &lt;<a \
href="mailto:petr.kmoch@gmail.com">petr.kmoch@gmail.com</a>&gt; wrote:<br> &gt; Hi \
Petr.<br> &gt;<br>
&gt; You&#39;re using a feature (`CMAKE_CXX_STANDARD`) introduced in CMake \
version<br> &gt; 3.1, so you should require a minimum version &gt;= that.<br>
&gt;<br>
&gt; You can learn the version of CMake by running `cmake --version`<br>
&gt;<br>
&gt; Petr<br>
&gt;<br>
&gt; On Thu, Oct 15, 2015 at 5:45 PM, Petr Bena &lt;<a \
href="mailto:benapetr@gmail.com">benapetr@gmail.com</a>&gt; wrote:<br> &gt;&gt;<br>
&gt;&gt; What do you mean by &quot;target&quot; property? I don&#39;t see any \
target<br> &gt;&gt; mentioned there. I don&#39;t have this line in there. I don&#39;t \
know which<br> &gt;&gt; CMake this is, it failed on server we use for unit tests, but \
I have<br> &gt;&gt; required min. version set to 2.8.7<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; On Thu, Oct 15, 2015 at 5:41 PM, Matthew S Wallace<br>
&gt;&gt; &lt;<a href="mailto:mwallace@ccmtrading.com">mwallace@ccmtrading.com</a>&gt; \
wrote:<br> &gt;&gt; &gt; What version of CMake are you using?   I'm using 3.3.2.   \
The only other<br> &gt;&gt; &gt; thing I did was:<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; set_property(GLOBAL PROPERTY CXX_STANDARD_REQUIRED)<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; I'm guessing this probably does nothing since it is probably a \
target<br> &gt;&gt; &gt; property.<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; -Matt<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt;&gt; On Oct 15, 2015, at 10:34 AM, Petr Bena &lt;<a \
href="mailto:benapetr@gmail.com">benapetr@gmail.com</a>&gt; wrote:<br> &gt;&gt; \
&gt;&gt;<br> &gt;&gt; &gt;&gt; Can you elaborate on it a bit?<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; I put set(CMAKE_CXX_STANDARD 11) as first line of my CMakeLists and \
it<br> &gt;&gt; &gt;&gt; still doesn&#39;t work, without the hack I used I get errors \
while<br> &gt;&gt; &gt;&gt; compiling.<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; Can you give me example file in which it works? I guess there is \
more<br> &gt;&gt; &gt;&gt; needed for it to work.<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; On Tue, Oct 13, 2015 at 7:12 PM, Matthew S Wallace<br>
&gt;&gt; &gt;&gt; &lt;<a \
href="mailto:mwallace@ccmtrading.com">mwallace@ccmtrading.com</a>&gt; wrote:<br> \
&gt;&gt; &gt;&gt;&gt; Thanks, setting the global variable solved my issue.<br> \
&gt;&gt; &gt;&gt;&gt;<br> &gt;&gt; &gt;&gt;&gt; -Matt<br>
&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt; On Oct 13, 2015, at 10:46 AM, Johannes Zarl-Zierl<br>
&gt;&gt; &gt;&gt;&gt;&gt; &lt;<a \
href="mailto:johannes.zarl-zierl@jku.at">johannes.zarl-zierl@jku.at</a>&gt; \
wrote:<br> &gt;&gt; &gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt; Hi,<br>
&gt;&gt; &gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt; CXX_STANDARD is a target property, not a global one. You \
can either<br> &gt;&gt; &gt;&gt;&gt;&gt; set<br>
&gt;&gt; &gt;&gt;&gt;&gt; CXX_STANDARD for every target that needs it, or set it \
globally by<br> &gt;&gt; &gt;&gt;&gt;&gt; changing<br>
&gt;&gt; &gt;&gt;&gt;&gt; the default value.<br>
&gt;&gt; &gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt; You can do the latter by setting the variable \
CMAKE_CXX_STANDARD<br> &gt;&gt; &gt;&gt;&gt;&gt; before<br>
&gt;&gt; &gt;&gt;&gt;&gt; defining any target that depends on it:<br>
&gt;&gt; &gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt; set(CMAKE_CXX_STANDARD 11)<br>
&gt;&gt; &gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt; HTH,<br>
&gt;&gt; &gt;&gt;&gt;&gt; Johannes<br>
&gt;&gt; &gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt; On Tuesday 13 October 2015 10:22:36 Matthew S Wallace \
wrote:<br> &gt;&gt; &gt;&gt;&gt;&gt;&gt; I have the following two lines in my \
CMakeLists.txt<br> &gt;&gt; &gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; set_property(GLOBAL PROPERTY CXX_STANDARD 11)<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; set_property(GLOBAL PROPERTY CXX_STANDARD_REQUIRED)<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; However when compiling some of my source files, the \
-std=c++11 flag<br> &gt;&gt; &gt;&gt;&gt;&gt;&gt; is not<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; added.<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; Just for good measure I added:<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; target_compile_features(my_target PRIVATE \
cxx_strong_enums) to the<br> &gt;&gt; &gt;&gt;&gt;&gt;&gt; target<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; that was having the problem.<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; Not sure if it matters, but in this case the compile \
error I'm<br> &gt;&gt; &gt;&gt;&gt;&gt;&gt; getting is<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; complaining because I'm referencing a fully scoped \
enum.   If I<br> &gt;&gt; &gt;&gt;&gt;&gt;&gt; explicitly<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; include -std=c++11 in my compile flags, everything \
works.<br> &gt;&gt; &gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; I'm thinking I'm probably just misunderstanding how \
CXX_STANDARD<br> &gt;&gt; &gt;&gt;&gt;&gt;&gt; works, but<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; any help would be appreciated.<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; -Matt<br>
&gt;&gt; &gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt; --<br>
&gt;&gt; &gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt; Powered by <a href="http://www.kitware.com" \
rel="noreferrer" target="_blank">www.kitware.com</a><br> &gt;&gt; \
&gt;&gt;&gt;&gt;<br> &gt;&gt; &gt;&gt;&gt;&gt; Please keep messages on-topic and \
check the CMake FAQ at:<br> &gt;&gt; &gt;&gt;&gt;&gt; <a \
href="http://www.cmake.org/Wiki/CMake_FAQ" rel="noreferrer" \
target="_blank">http://www.cmake.org/Wiki/CMake_FAQ</a><br> &gt;&gt; \
&gt;&gt;&gt;&gt;<br> &gt;&gt; &gt;&gt;&gt;&gt; Kitware offers various services to \
support the CMake community. For<br> &gt;&gt; &gt;&gt;&gt;&gt; more information on \
each offering, please visit:<br> &gt;&gt; &gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt; CMake Support: <a \
href="http://cmake.org/cmake/help/support.html" rel="noreferrer" \
target="_blank">http://cmake.org/cmake/help/support.html</a><br> &gt;&gt; \
&gt;&gt;&gt;&gt; CMake Consulting: <a \
href="http://cmake.org/cmake/help/consulting.html" rel="noreferrer" \
target="_blank">http://cmake.org/cmake/help/consulting.html</a><br> &gt;&gt; \
&gt;&gt;&gt;&gt; CMake Training Courses: <a \
href="http://cmake.org/cmake/help/training.html" rel="noreferrer" \
target="_blank">http://cmake.org/cmake/help/training.html</a><br> &gt;&gt; \
&gt;&gt;&gt;&gt;<br> &gt;&gt; &gt;&gt;&gt;&gt; Visit other Kitware open-source \
projects at<br> &gt;&gt; &gt;&gt;&gt;&gt; <a \
href="http://www.kitware.com/opensource/opensource.html" rel="noreferrer" \
target="_blank">http://www.kitware.com/opensource/opensource.html</a><br> &gt;&gt; \
&gt;&gt;&gt;&gt;<br> &gt;&gt; &gt;&gt;&gt;&gt; Follow this link to \
subscribe/unsubscribe:<br> &gt;&gt; &gt;&gt;&gt;&gt; <a \
href="http://public.kitware.com/mailman/listinfo/cmake" rel="noreferrer" \
target="_blank">http://public.kitware.com/mailman/listinfo/cmake</a><br> &gt;&gt; \
&gt;&gt;&gt;<br> &gt;&gt; &gt;&gt;&gt; --<br>
&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt; Powered by <a href="http://www.kitware.com" rel="noreferrer" \
target="_blank">www.kitware.com</a><br> &gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt; Please keep messages on-topic and check the CMake FAQ at:<br>
&gt;&gt; &gt;&gt;&gt; <a href="http://www.cmake.org/Wiki/CMake_FAQ" rel="noreferrer" \
target="_blank">http://www.cmake.org/Wiki/CMake_FAQ</a><br> &gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt; Kitware offers various services to support the CMake community. \
For<br> &gt;&gt; &gt;&gt;&gt; more information on each offering, please visit:<br>
&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt; CMake Support: <a \
href="http://cmake.org/cmake/help/support.html" rel="noreferrer" \
target="_blank">http://cmake.org/cmake/help/support.html</a><br> &gt;&gt; \
&gt;&gt;&gt; CMake Consulting: <a href="http://cmake.org/cmake/help/consulting.html" \
rel="noreferrer" target="_blank">http://cmake.org/cmake/help/consulting.html</a><br> \
&gt;&gt; &gt;&gt;&gt; CMake Training Courses: <a \
href="http://cmake.org/cmake/help/training.html" rel="noreferrer" \
target="_blank">http://cmake.org/cmake/help/training.html</a><br> &gt;&gt; \
&gt;&gt;&gt;<br> &gt;&gt; &gt;&gt;&gt; Visit other Kitware open-source projects \
at<br> &gt;&gt; &gt;&gt;&gt; <a \
href="http://www.kitware.com/opensource/opensource.html" rel="noreferrer" \
target="_blank">http://www.kitware.com/opensource/opensource.html</a><br> &gt;&gt; \
&gt;&gt;&gt;<br> &gt;&gt; &gt;&gt;&gt; Follow this link to subscribe/unsubscribe:<br>
&gt;&gt; &gt;&gt;&gt; <a href="http://public.kitware.com/mailman/listinfo/cmake" \
rel="noreferrer" target="_blank">http://public.kitware.com/mailman/listinfo/cmake</a><br>
 &gt;&gt; &gt;<br>
&gt;&gt; --<br>
&gt;&gt;<br>
&gt;&gt; Powered by <a href="http://www.kitware.com" rel="noreferrer" \
target="_blank">www.kitware.com</a><br> &gt;&gt;<br>
&gt;&gt; Please keep messages on-topic and check the CMake FAQ at:<br>
&gt;&gt; <a href="http://www.cmake.org/Wiki/CMake_FAQ" rel="noreferrer" \
target="_blank">http://www.cmake.org/Wiki/CMake_FAQ</a><br> &gt;&gt;<br>
&gt;&gt; Kitware offers various services to support the CMake community. For more<br>
&gt;&gt; information on each offering, please visit:<br>
&gt;&gt;<br>
&gt;&gt; CMake Support: <a href="http://cmake.org/cmake/help/support.html" \
rel="noreferrer" target="_blank">http://cmake.org/cmake/help/support.html</a><br> \
&gt;&gt; CMake Consulting: <a href="http://cmake.org/cmake/help/consulting.html" \
rel="noreferrer" target="_blank">http://cmake.org/cmake/help/consulting.html</a><br> \
&gt;&gt; CMake Training Courses: <a href="http://cmake.org/cmake/help/training.html" \
rel="noreferrer" target="_blank">http://cmake.org/cmake/help/training.html</a><br> \
&gt;&gt;<br> &gt;&gt; Visit other Kitware open-source projects at<br>
&gt;&gt; <a href="http://www.kitware.com/opensource/opensource.html" rel="noreferrer" \
target="_blank">http://www.kitware.com/opensource/opensource.html</a><br> \
&gt;&gt;<br> &gt;&gt; Follow this link to subscribe/unsubscribe:<br>
&gt;&gt; <a href="http://public.kitware.com/mailman/listinfo/cmake" rel="noreferrer" \
target="_blank">http://public.kitware.com/mailman/listinfo/cmake</a><br> &gt;<br>
&gt;<br>
--<br>
<br>
Powered by <a href="http://www.kitware.com" rel="noreferrer" \
target="_blank">www.kitware.com</a><br> <br>
Please keep messages on-topic and check the CMake FAQ at: <a \
href="http://www.cmake.org/Wiki/CMake_FAQ" rel="noreferrer" \
target="_blank">http://www.cmake.org/Wiki/CMake_FAQ</a><br> <br>
Kitware offers various services to support the CMake community. For more information \
on each offering, please visit:<br> <br>
CMake Support: <a href="http://cmake.org/cmake/help/support.html" rel="noreferrer" \
target="_blank">http://cmake.org/cmake/help/support.html</a><br> CMake Consulting: <a \
href="http://cmake.org/cmake/help/consulting.html" rel="noreferrer" \
target="_blank">http://cmake.org/cmake/help/consulting.html</a><br> CMake Training \
Courses: <a href="http://cmake.org/cmake/help/training.html" rel="noreferrer" \
target="_blank">http://cmake.org/cmake/help/training.html</a><br> <br>
Visit other Kitware open-source projects at <a \
href="http://www.kitware.com/opensource/opensource.html" rel="noreferrer" \
target="_blank">http://www.kitware.com/opensource/opensource.html</a><br> <br>
Follow this link to subscribe/unsubscribe:<br>
<a href="http://public.kitware.com/mailman/listinfo/cmake" rel="noreferrer" \
target="_blank">http://public.kitware.com/mailman/listinfo/cmake</a></div></div></blockquote></div><br><br \
clear="all"><div><br></div>-- <br><div class="gmail_signature">Pau Garcia i \
Quiles<br><a href="http://www.elpauer.org" \
target="_blank">http://www.elpauer.org</a><br>(Due to my workload, I may need 10 days \
to answer)</div> </div>



-- 

Powered by www.kitware.com

Please keep messages on-topic and check the CMake FAQ at: \
http://www.cmake.org/Wiki/CMake_FAQ

Kitware offers various services to support the CMake community. For more information \
on each offering, please visit:

CMake Support: http://cmake.org/cmake/help/support.html
CMake Consulting: http://cmake.org/cmake/help/consulting.html
CMake Training Courses: http://cmake.org/cmake/help/training.html

Visit other Kitware open-source projects at \
http://www.kitware.com/opensource/opensource.html

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/mailman/listinfo/cmake



[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic