Skip to content

Commit

Permalink
UPDate
Browse files Browse the repository at this point in the history
  • Loading branch information
Bigmancozmo committed Jun 19, 2024
1 parent 29a19e6 commit bdda6ec
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ jobs:
- name: Windows
os: windows-latest

#- name: macOS
# os: macos-latest
- name: macOS
os: macos-latest

- name: Android32
os: ubuntu-latest
Expand All @@ -35,6 +35,8 @@ jobs:
- name: Build the mod
uses: geode-sdk/build-geode-mod@main
with:
bindings: geode-sdk/bindings
bindings-ref: main
combine: true
target: ${{ matrix.config.target }}

Expand Down
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -52,4 +52,7 @@ build-*/
.idea/

# clangd
.cache/
.cache/


.vs
8 changes: 5 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
cmake_minimum_required(VERSION 3.21)
set(CMAKE_CXX_STANDARD 20)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_OSX_ARCHITECTURES "x86_64")
set(CMAKE_OSX_ARCHITECTURES "arm64;x86_64")
set(CMAKE_CXX_VISIBILITY_PRESET hidden)

project(HideProfileButton VERSION 1.0.0)
project(test VERSION 1.0.0)

# Set up the mod binary
add_library(${PROJECT_NAME} SHARED
src/main.cpp
# Add your cpp files here
# Add any extra C++ source files here
)

if (NOT DEFINED ENV{GEODE_SDK})
Expand All @@ -19,4 +20,5 @@ endif()

add_subdirectory($ENV{GEODE_SDK} ${CMAKE_CURRENT_BINARY_DIR}/geode)

# Set up dependencies, resources, and link Geode.
setup_geode_mod(${PROJECT_NAME})
6 changes: 3 additions & 3 deletions mod.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"geode": "2.0.0-beta.19",
"geode": "3.0.0-beta.1",
"gd": {
"win": "2.204",
"android": "2.205"
"win": "2.206",
"android": "2.206"
},
"version": "v1.3.3",
"id": "bigmancozmo.hide_profile_button",
Expand Down

0 comments on commit bdda6ec

Please sign in to comment.