This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var forge = | |
| /******/ (function(modules) { // webpackBootstrap | |
| /******/ // The module cache | |
| /******/ var installedModules = {}; | |
| /******/ | |
| /******/ // The require function | |
| /******/ function __webpack_require__(moduleId) { | |
| /******/ | |
| /******/ // Check if module is in cache | |
| /******/ if(installedModules[moduleId]) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| include(FetchContent) | |
| function(ADD_GRPC_AND_PROTOS PROTO_FOLDER_PATH PROTO_FILE_NAME) | |
| message("!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!BEGIN PROTO GEN!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!") | |
| if(EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/${PROTO_FOLDER_PATH}/${PROTO_FILE_NAME}.proto") | |
| message("Proto file found ${CMAKE_CURRENT_SOURCE_DIR}/${PROTO_FOLDER_PATH}/${PROTO_FILE_NAME}.proto") | |
| else() | |
| message(FATAL_ERROR "Proto file not found : ${CMAKE_CURRENT_SOURCE_DIR}/${PROTO_FOLDER_PATH}/${PROTO_FILE_NAME}.proto") | |
| endif() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "configurations": [ | |
| { | |
| "name": "x64-Debug", | |
| "generator": "Ninja", | |
| "configurationType": "Debug", | |
| "inheritEnvironments": [], | |
| "buildRoot": "${projectDir}\\build", | |
| "installRoot": "${projectDir}\\out\\install\\${name}", | |
| "cmakeCommandArgs": "-DPICO_SDK_PATH=\"%ProgramFiles%/Raspberry Pi/Pico SDK v1.5.1/pico-sdk\" -DPICO_BOARD=pico_w -DPICO_REG_KEY=\"Software/Raspberry Pi/Pico SDK v1.5.1\" -DPICO_INSTALL_PATH=\"%ProgramFiles%/Raspberry Pi/Pico SDK v1.5.1\" -DPICO_SDK_VERSION=\"1.5.1\" -DOPENOCD_SCRIPTS=\"%ProgramFiles%/Raspberry Pi/Pico SDK v1.5.1/openocd/scripts\"", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Check for help flag | |
| if [ "$1" == "-h" ] || [ "$1" == "--help" ] | |
| then | |
| echo "Create a systemd service file" | |
| echo "Usage: ./create-service.sh -s <service name> -c <command> -w <working directory> -E <run service at startup>" | |
| exit 0 | |
| fi |