[CMake] Custom Commands and Environmnt Settings for PATH and LD_LIBRARY_PATH

Nils Gladitz nilsgladitz at gmail.com
Fri Apr 11 07:08:23 EDT 2014


On 04/11/2014 12:56 PM, Jörg Kreuzberger wrote:
> ok, biggest hint here was the tip for $<TARGET_FILE:..>. This was new to me (am new to cmake at all).
> Thanks.
>
> My major problem is still passing the additonal PATH elements to the cmake script, cause they will always expanded in an space seperated list.
>
> So if i add -DENV_PATH="${QT_LIBRARY_DIR};${INTELIPP_LIBRARY_DIR}"
> and assign it to $ENV{PATH} in my cmake script, is will always remove the semikolons

Try "-DENV_PATH=${QT_LIBRARY_DIR};${INTELIPP_LIBRARY_DIR}" (with the 
quotes as-is) and the VERBATIM flag to add_custom_command().

Nils



More information about the CMake mailing list