Quantcast
Channel: Raspberry Pi Forums
Viewing all articles
Browse latest Browse all 4848

SDK • Re: How to build VSCode generated project on command line?

$
0
0
That's a good idea, but we need to keep this compartmentalized such that any user can jump in and build without creating a 'dummy' file in their home directory.
In which case, I would ignore the comment not to change things and go with -

Code:

if (WIN32)    include(${USERHOME}/.pico-sdk/cmake/pico-vscode.cmake)endif()
Or wrap the entire block.

If you want to allow building under Windows or Linux, CLI or using VS Code, this would probably work -

Code:

if (EXISTS  ${USERHOME}/.pico-sdk/cmake/pico-vscode.cmake)    include(${USERHOME}/.pico-sdk/cmake/pico-vscode.cmake)endif()

Statistics: Posted by hippy — Tue Oct 08, 2024 11:22 am



Viewing all articles
Browse latest Browse all 4848

Trending Articles