<div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr">Why does it seem I'm the only one with this problem?<div>I've recently updated this other portable system while I'm on the road, and the latest version of course fails the same way.</div><div><br></div><div>---- The Current build output</div><div><br></div><div>1>------ Build started: Project: intershell (ExternalProjectTargets\intershell\intershell), Configuration: RelWithDebInfo x64 ------<br>1> Performing install step for 'intershell'<br>1> Microsoft (R) Build Engine version 14.0.23107.0<br>1> Copyright (C) Microsoft Corporation. All rights reserved.<br>1><br>1>MSBUILD : error MSB1009: Project file does not exist.<br>1> Switch: install<br>========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========<br></div><div><br></div><div>-----</div><div>share\cmake-3.15\Modules\ExternalProject.cmake<br></div><div>line 1853</div><div><br></div><div> if(step STREQUAL "INSTALL")<br> list(APPEND args --target install)<br> endif()<br><br></div><div><br></div><div>Change to</div><div> if(step STREQUAL "INSTALL")<br> list(APPEND args --target INSTALL)<br> endif()<br><br></div><div> -------------------</div><div><br></div><div>And then the output looks like</div><div> --------------</div><div>1>------ Build started: Project: intershell (ExternalProjectTargets\intershell\intershell), Configuration: RelWithDebInfo x64 ------<br>1> Performing install step for 'intershell'<br>1> Microsoft (R) Build Engine version 14.0.23107.0<br>1> Copyright (C) Microsoft Corporation. All rights reserved.<br>1><br>1> InterShell.Service.vcxproj -> M:\javascript\sack-gui\build\sack-src\src\intershell-build\service.shell\RelWithDebInfo\InterShell.Service.exe<br></div><div>..........</div><div>(completes successfully )</div><div><br></div><div><br></div></div></div></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Thu, Apr 25, 2019 at 1:27 AM J Decker <<a href="mailto:d3ck0r@gmail.com">d3ck0r@gmail.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div>I've had to make this modification the last few versions...</div><div><br></div><div>cmake/share/cmake-3.14/Modules/ExternalProject.cmake</div><div><br></div><div>line 1870 from<br></div><div><br></div><div> if(step STREQUAL "INSTALL")</div><div> list(APPEND args --target install)</div><div> endif()</div><div><br></div><div>to</div><div><br></div><div><div> if(step STREQUAL "INSTALL")</div><div> list(APPEND args --target INSTALL)</div><div> endif()</div><br class="gmail-m_-4152913635627452026gmail-Apple-interchange-newline"></div><div>Otherwise, when building with visual studio, and trying to run the <project>-install.rule rule, it says 'no such project'</div><div><br></div><div>I don't think the same issue happens when building from the command line.</div></div></div></div>
</blockquote></div>