From 8e8950f17b150e4c794ee7aceed0e2ed3f8183b4 Mon Sep 17 00:00:00 2001 From: rjindael Date: Wed, 19 Jul 2023 15:22:42 -0700 Subject: [PATCH] fix ci --- .github/workflows/build.yml | 4 ++-- CMakeLists.txt | 8 +------- 2 files changed, 3 insertions(+), 9 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 80f621a..0768a8c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -19,9 +19,9 @@ jobs: - name: Install required packages uses: awalsh128/cache-apt-pkgs-action@latest with: - version: 2.0 + version: 2.1 packages: >- - clang + build-essential cmake ninja-build libboost-dev diff --git a/CMakeLists.txt b/CMakeLists.txt index 9525950..d52826e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -17,10 +17,4 @@ find_package(Boost REQUIRED) find_package(OGRE REQUIRED COMPONENTS Bites CONFIG) find_package(pugixml REQUIRED) -add_subdirectory(Projects) - -if(CI AND UNIX) - file(COPY ${OGRE_MEDIA_DIR}/Main/ DESTINATION ${CMAKE_BINARY_DIR}/shaders) - file(COPY ${OGRE_MEDIA_DIR}/RTShaderLib/ DESTINATION ${CMAKE_BINARY_DIR}/shaders) - file(COPY ${OGRE_PLUGIN_DIR}/ DESTINATION ${CMAKE_BINARY_DIR}/plugins) -endif() \ No newline at end of file +add_subdirectory(Projects) \ No newline at end of file