Fix loading of PICO_TOOLCHAIN_PATH (#262)

- Add double quotes because build option it's a string.
- Remove comment as requested by @kilograham.
- Resolves #258.
This commit is contained in:
José Simões 2021-03-18 20:02:21 +00:00 committed by GitHub
parent f6d32f87a1
commit 304ab7dd92
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,6 +1,5 @@
# PICO_CMAKE_CONFIG: PICO_TOOLCHAIN_PATH, Path to search for compiler, default=none (i.e. search system paths), group=build
# Set your compiler path here if it's not in the PATH environment variable.
set(PICO_TOOLCHAIN_PATH "" CACHE INTERNAL "")
set(PICO_TOOLCHAIN_PATH "${PICO_TOOLCHAIN_PATH}" CACHE INTERNAL "")
# Set a default build type if none was specified
set(default_build_type "Release")