From f8e2d076879f3c1051257c35003a4b5f2d5d2edc Mon Sep 17 00:00:00 2001 From: Bilal Kahraman Date: Sun, 11 Aug 2024 17:58:18 +0300 Subject: [PATCH] Move scripts to common folder --- .github/workflows/cmake-single-platform.yml | 2 +- insall_deps.sh | 11 ----------- compile.sh => scripts/compile.sh | 0 install_deps.sh => scripts/install_deps.sh | 0 4 files changed, 1 insertion(+), 12 deletions(-) delete mode 100644 insall_deps.sh rename compile.sh => scripts/compile.sh (100%) rename install_deps.sh => scripts/install_deps.sh (100%) diff --git a/.github/workflows/cmake-single-platform.yml b/.github/workflows/cmake-single-platform.yml index fb57f3a..c53fcba 100644 --- a/.github/workflows/cmake-single-platform.yml +++ b/.github/workflows/cmake-single-platform.yml @@ -26,7 +26,7 @@ jobs: - name: Install dependencies run: | sudo apt-get update - sudo bash ./install_deps.sh + sudo bash ./scripts/install_deps.sh - name: Configure CMake # Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make. diff --git a/insall_deps.sh b/insall_deps.sh deleted file mode 100644 index 4b44cb1..0000000 --- a/insall_deps.sh +++ /dev/null @@ -1,11 +0,0 @@ -#install sdl2 -sudo apt install libsdl2-dev libsdl2-2.0-0 -y; - -#install sdl image - if you want to display images -sudo apt install libjpeg-dev libwebp-dev libtiff5-dev libsdl2-image-dev libsdl2-image-2.0-0 -y; - -#install sdl mixer - if you want sound -sudo apt install libmikmod-dev libfishsound1-dev libsmpeg-dev liboggz2-dev libflac-dev libfluidsynth-dev libsdl2-mixer-dev libsdl2-mixer-2.0-0 -y; - -#install sdl true type fonts - if you want to use text -sudo apt install libfreetype6-dev libsdl2-ttf-dev libsdl2-ttf-2.0-0 -y; diff --git a/compile.sh b/scripts/compile.sh similarity index 100% rename from compile.sh rename to scripts/compile.sh diff --git a/install_deps.sh b/scripts/install_deps.sh similarity index 100% rename from install_deps.sh rename to scripts/install_deps.sh