1
0
mirror of https://github.com/lvgl/lvgl.git synced 2025-01-14 06:42:58 +08:00
lvgl/.devcontainer/setup.sh
Gabor Kiss-Vamosi e86b1a6ec9 Revert "feat(gh-codespace): prebuild the project"
This reverts commit 493af0ec26824e181c293e77e301d3ce4b0cd80d.
2023-11-02 22:57:15 +01:00

18 lines
457 B
Bash
Executable File

#!/bin/sh
echo ". /usr/local/emsdk/emsdk_env.sh" >> /home/codespace/.bashrc
cd /workspace/lvgl_app
sudo chmod 777 .
mkdir build
mkdir vscode
cd lvgl/.devcontainer
cp __CMakeLists.txt__ ../../CMakeLists.txt
cp __lv_conf.h__ ../../lv_conf.h
cp __main.c__ ../../main.c
cp __build_all.sh__ ../../build_all.sh
cp __c_cpp_properties.json__ ../../.vscode/c_cpp_properties.json
cp __settings.json__ ../../.vscode/settings.json
chmod +x ../../build_all.sh