Skip to content

Commit cb4601e

Browse files
committed
cmake: Disable PCH because of stupid MacOS bullshit
1 parent fa45b4f commit cb4601e

File tree

3 files changed

+10
-0
lines changed

3 files changed

+10
-0
lines changed

CMakeLists.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,11 @@ if (WIN32)
4646
endif()
4747

4848

49+
# Geode settings
50+
51+
set(GEODE_DISABLE_PRECOMPILED_HEADERS ON)
52+
53+
4954
if (NOT DEFINED ENV{GEODE_SDK})
5055
message(FATAL_ERROR "Unable to find Geode SDK! Please define GEODE_SDK environment variable to point to Geode")
5156
else()

src/custom_layers/RLStatsAlertLayer.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@
88
#include <Geode/binding/GJLevelList.hpp>
99
#include <Geode/binding/LevelListLayer.hpp>
1010
#include <Geode/binding/TextArea.hpp>
11+
#include <Geode/binding/LoadingCircle.hpp>
12+
#include <Geode/binding/GJListLayer.hpp>
13+
#include <Geode/binding/BoomListView.hpp>
14+
#include <Geode/binding/TableView.hpp>
1115

1216
#include "RouletteManager.hpp"
1317
#include "utils.hpp"

src/custom_nodes/RLProgressBar.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
#pragma once
22

33
#include <cmath>
4+
#include <algorithm>
45

56
#include <Geode/cocos/sprite_nodes/CCSprite.h>
67
#include <Geode/cocos/misc_nodes/CCClippingNode.h>

0 commit comments

Comments
 (0)