1
0
mirror of https://github.com/lvgl/lvgl.git synced 2025-01-28 07:03:00 +08:00
lvgl/.devcontainer/setup.sh

18 lines
457 B
Bash
Raw Normal View History

2023-03-26 13:34:43 +02:00
#!/bin/sh
echo ". /usr/local/emsdk/emsdk_env.sh" >> /home/codespace/.bashrc
cd /workspace/lvgl_app
sudo chmod 777 .
mkdir build
mkdir vscode
2023-03-26 13:34:43 +02:00
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
2023-03-26 13:34:43 +02:00
chmod +x ../../build_all.sh