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 used softwipe -C -M -O softwipe_cmake.cmd ../my_repo
and ran into errors when Softwipe ran CMake with my custom arguments from softwipe_cmake.cmd.
The reason was that softwipe_cmake.cmd contained a -DSOME_PATH="/path/here", which had quotes in it.
When running this on the command line, it works fine. When running it via softwipe, the variable SOME_PATH is not defined in CMakeCache.txt.
So something goes wrong when parsing the arguments in the -O flag (which is not documented in the readme :/)
The text was updated successfully, but these errors were encountered:
I used
softwipe -C -M -O softwipe_cmake.cmd ../my_repo
and ran into errors when Softwipe ran CMake with my custom arguments from
softwipe_cmake.cmd
.The reason was that
softwipe_cmake.cmd
contained a-DSOME_PATH="/path/here"
, which had quotes in it.When running this on the command line, it works fine. When running it via softwipe, the variable SOME_PATH is not defined in CMakeCache.txt.
So something goes wrong when parsing the arguments in the
-O
flag (which is not documented in the readme :/)The text was updated successfully, but these errors were encountered: