blob: 85fa9aebba6b095b9b4081248f833e69d7b2f9fd [file] [log] [blame]
:<<"::WINDOWS_ONLY"
@echo off
:: Copyright 2020 The Pigweed Authors
::
:: Licensed under the Apache License, Version 2.0 (the "License"); you may not
:: use this file except in compliance with the License. You may obtain a copy of
:: the License at
::
:: https://www.apache.org/licenses/LICENSE-2.0
::
:: Unless required by applicable law or agreed to in writing, software
:: distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
:: WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
:: License for the specific language governing permissions and limitations under
:: the License.
::WINDOWS_ONLY
:; echo "ERROR: Attempting to run Windows .bat from a Unix/POSIX shell!"
:; echo "Instead, run the following command."
:; echo ""
:; echo " source ./activate.sh"
:; echo ""
:<<"::WINDOWS_ONLY"
:: The bootstrap.bat must be run initially to install all required programs.
:: After that, use activate.bat to enter the environment in a shell.
:: First, activate the Pigweed development environment.
set "_pw_bootstrap_script=%~dp0.\third_party\pigweed\bootstrap.bat"
set "PW_PROJECT_ROOT=%~dp0."
set "SAMPLE_PROJECT_ROOT=%PW_PROJECT_ROOT%"
:: Set your project's banner and color.
set "PW_BRANDING_BANNER=%PW_PROJECT_ROOT%\banner.txt"
set "PW_BRANDING_BANNER_COLOR=cyan"
if not exist "%_pw_bootstrap_script%" (
echo Updating git submodules
git submodule update --init
)
set "_tinyusb_license=%~dp0.\third_party\pico_sdk\lib\tinyusb\LICENSE"
if not exist "%_tinyusb_license%" (
cd third_party\pico_sdk
git submodule update --init lib\tinyusb
cd ..
cd ..
)
call "%_pw_bootstrap_script%"
:: Add user-defined initial setup here.
:finish
::WINDOWS_ONLY