[CMake] Troubles with small CMakeLists.txt
Stephan.Szabo at sony.com
Stephan.Szabo at sony.com
Tue Jun 4 19:13:35 EDT 2019
Hi,
Looking at the cmake there, your bsBuildLibExamples macro starts off by doing
set(WITH_LIB_${lib_upper}_EXAMPLES "")
but lib_upper isn't set to match the new value of lib until later inside the foreach.
So it seems like you're resetting the value of the previous iteration.
Moving the
string(TOUPPER ${lib} lib_upper)
to the top of the macro seems to make all the variables show up.
Regards,
Stephan
-----Original Message-----
From: CMake <cmake-bounces at cmake.org> On Behalf Of Steven Truppe
Sent: Tuesday, June 4, 2019 3:56 PM
To: cmake at cmake.org
Subject: Re: [CMake] Troubles with small CMakeLists.txt
I've made the code more readable and easy to understand so you don't have to read through all the code:
https://wandbox.org/permlink/qp7ScGBeMOtolfxb
On 05.06.19 00:47, Steven Truppe wrote:
> Hi everyone,
>
> i finaly have solved the issues i had and now have the working code on:
> https://wandbox.org/permlink/ujEH8F91SVzMyt1D
>
>
> The problem is that the i only get the last result as output, he
> create the variables and stores them (i tested with
> cmake_print_variables) but at the end the resulting variables are
> empty - only the last one is correct....
>
> I hope someone here can help.
>
>
> best regards!
>
--
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:
https://cmake.org/mailman/listinfo/cmake
More information about the CMake
mailing list