[CMake] How to pass linker options with whitespace?

Marc CHEVRIER marc.chevrier at gmail.com
Mon May 13 02:33:27 EDT 2019


You have to use SHELL token (see documentation of add_link_options)

add_link_options ("SHELL:-s USE_WEBGL2=1"  "SHELL:-s FULL_ES2=1")

Le 12 mai 2019 à 21:14 +0200, Fredrik Orderud <forderud at gmail.com>, a écrit :
> I'm struggling to figure out how to pass "-s USE_WEBGL2=1 -s
> FULL_ES2=1" (without the quotes) as linker options to _all_ CMake
> targets when using Emscripten targeting WebAssembly.
>
> I've already tried add_link_options(-s USE_WEBGL2=1 -s FULL_ES2=1),
> but that caused the second "-s" to disappear before reaching the
> linker. Also, calling add_link_options("-s USE_WEBGL2=1 -s
> FULL_ES2=1") causes quotes to be added to the linker call.
>
> I'm currently using set_target_properties(target PROPERTIES LINK_FLAGS
> "-s USE_WEBGL2=1 -s FULL_ES2=1") as temporary solution. This works
> fine, but am not satisfied with having to apply this manually to all
> targets.
>
> Any suggestions?
> --
>
> 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
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://cmake.org/pipermail/cmake/attachments/20190513/fb007b10/attachment.html>


More information about the CMake mailing list