From 06c77147fdc82d98f0551e1b38e494ecef50be24 Mon Sep 17 00:00:00 2001 From: elnexreal <40328573+elnexreal@users.noreply.github.com> Date: Tue, 9 Jul 2024 05:45:47 -0300 Subject: [PATCH] i didn't think of this... --- .github/workflows/multi-platform.yml | 2 +- CMakeLists.txt | 6 ------ 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/.github/workflows/multi-platform.yml b/.github/workflows/multi-platform.yml index 22023c7..1cb3c85 100644 --- a/.github/workflows/multi-platform.yml +++ b/.github/workflows/multi-platform.yml @@ -36,7 +36,7 @@ jobs: uses: geode-sdk/build-geode-mod@main with: cli: "v3.0.0" - bindings: geode-sdk/bindings + bindings: elnexreal/geode-bindings bindings-ref: main combine: true target: ${{ matrix.config.target }} diff --git a/CMakeLists.txt b/CMakeLists.txt index 7fd29f1..49845ab 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -11,12 +11,6 @@ file(GLOB SOURCES src/ui/*.cpp ) -if (DEFINED ENV{GITHUB_ACTIONS}) - message("Github Actions Building, setting up env") - set(GEODE_BINDINGS_REPO_PATH ${CMAKE_SOURCE_DIR}/bindings) - add_definitions(-DGITHUB_ACTIONS) -endif() - add_library(${PROJECT_NAME} SHARED ${SOURCES}) if (NOT DEFINED ENV{GEODE_SDK})