You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm adding an additional argument to cmake using the "Other CMake arguments" field using Eclipse variables:
-G "Unix Makefiles" -DPROJECT=${ProjName}
and ${ProjName} is not expanded and passed to CMake as is:
I'm adding an additional argument to cmake using the "Other CMake arguments" field using Eclipse variables:
-G "Unix Makefiles" -DPROJECT=${ProjName}
and ${ProjName} is not expanded and passed to CMake as is:
cmake -DCMAKE_BUILD_TYPE:STRING=Debug -DCMAKE_VERBOSE_MAKEFILE:BOOL=ON -DCMAKE_RULE_MESSAGES:BOOL=OFF -G Ninja -G "Unix Makefiles" -DPROJECT=${ProjName} -DCMAKE_EXPORT_COMPILE_COMMANDS:BOOL=ON /home/user/eclipse-workspace/template
The Build output field of the same form expand variables well.
The text was updated successfully, but these errors were encountered: