[CMake] install() rename with version string

Wagner Martin Martin.Wagner at neuberger.net
Thu Jan 19 08:07:46 EST 2017


That doesn't work as CMake seems to only evaluate the include() statement once at first run. With the OPTIONAL statement, my project builds, but the ${version_string} variable is not populated.



Von: Eric Noulard [mailto:eric.noulard at gmail.com] 
Gesendet: Donnerstag, 19. Januar 2017 13:00
An: Wagner Martin
Cc: cmake at cmake.org
Betreff: Re: [CMake] install() rename with version string

You can try:

include(version.cmake OPTIONAL)

which will make include tolerate the absence of version.cmake,
but then your install statement will only be OK after version.cmake has been created.



2017-01-19 9:30 GMT+01:00 Wagner Martin <Martin.Wagner at neuberger.net>:
Hello,
 
I’ve searched for some time, but didn’t find anything useful. Most finds deal with including version system stuff passed to header files for compilation.
 
I want to achieve something like that:
Include(version.cmake)
install(FILES firmware.hex  RENAME  firmware_${version_string}.hex)
 
where version.cmake is created like explained in this mail https://cmake.org/pipermail/cmake/2010-July/038015.html alongside headers needed for compilation.
 
However, CMake needs to include version.cmake at first CMake run time, which is not possible because it’s a generated file.
 
Is there any other way to do the rename?
 
Thanks for your help!
 
Regards,
Martin

--

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




-- 
Eric


More information about the CMake mailing list