Skip to content

Commit f641fc2

Browse files
committed
removed strict cmake requirement - oops
1 parent 8f6d8d4 commit f641fc2

File tree

5 files changed

+40
-36
lines changed

5 files changed

+40
-36
lines changed

.efrocachemap

Lines changed: 24 additions & 24 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
### 1.7.37 (build 22097, api 9, 2024-11-12)
1+
### 1.7.37 (build 22099, api 9, 2024-11-13)
22
- Bumping api version to 9. As you'll see below, there's some UI changes that
33
will require a bit of work for any UI mods to adapt to. If your mods don't
44
touch UI stuff at all you can simply bump your api version and call it a day.

src/assets/ba_data/python/baenv.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353

5454
# Build number and version of the ballistica binary we expect to be
5555
# using.
56-
TARGET_BALLISTICA_BUILD = 22097
56+
TARGET_BALLISTICA_BUILD = 22099
5757
TARGET_BALLISTICA_VERSION = '1.7.37'
5858

5959

src/ballistica/shared/ballistica.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ auto main(int argc, char** argv) -> int {
3939
namespace ballistica {
4040

4141
// These are set automatically via script; don't modify them here.
42-
const int kEngineBuildNumber = 22097;
42+
const int kEngineBuildNumber = 22099;
4343
const char* kEngineVersion = "1.7.37";
4444
const int kEngineApiVersion = 9;
4545

tools/batools/build.py

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -352,15 +352,19 @@ def checkenv() -> None:
352352
print(f'{Clr.BLD}Checking environment...{Clr.RST}', flush=True)
353353

354354
# Make sure they've got cmake.
355-
if (
356-
subprocess.run(
357-
['which', 'cmake'], check=False, capture_output=True
358-
).returncode
359-
!= 0
360-
):
361-
raise CleanError(
362-
'cmake is required; please install it via apt, brew, etc.'
363-
)
355+
#
356+
# UPDATE - don't want to do this since they might just be using
357+
# prefab builds.
358+
if bool(False):
359+
if (
360+
subprocess.run(
361+
['which', 'cmake'], check=False, capture_output=True
362+
).returncode
363+
!= 0
364+
):
365+
raise CleanError(
366+
'cmake is required; please install it via apt, brew, etc.'
367+
)
364368

365369
# Make sure they've got curl.
366370
if (

0 commit comments

Comments
 (0)