Skip to content

Commit

Permalink
Fix pioasm path
Browse files Browse the repository at this point in the history
  • Loading branch information
will-v-pi committed Aug 9, 2024
1 parent 7c35f29 commit 861ad8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/pico_project.py
Original file line number Diff line number Diff line change
Expand Up @@ -595,7 +595,7 @@ def GenerateCMake(folder, params):
"endif()\n"
f"set(PICO_SDK_PATH {cmakeSdkPath(params['sdkVersion'])})\n"
f"set(PICO_TOOLCHAIN_PATH {cmakeToolchainPath(params['toolchainVersion'])})\n"
f"set(pioasm_HINT {cmakeToolsPath('2.0.0-dev')}/pioasm)\n" # todo: set this back to sdkVersion
f"set(pioasm_HINT {cmakeToolsPath(params['sdkVersion'])}/pioasm)\n"
"if(EXISTS ${pioasm_HINT})\n"
" set(pioasm_DIR ${pioasm_HINT})\n"
"endif()\n"
Expand Down

0 comments on commit 861ad8e

Please sign in to comment.