Minor updates

This commit is contained in:
Christian Semmler 2024-01-10 17:28:22 -05:00
parent 6f536e13e8
commit ba2841a02d
2 changed files with 4 additions and 1 deletions

View File

@ -49,6 +49,7 @@ jobs:
cmake --build build
build:
name: 'MSVC 4.20'
runs-on: windows-latest
steps:
@ -87,6 +88,7 @@ jobs:
build/LEGO1.PDB
compare:
name: 'Compare with master'
needs: build
runs-on: windows-latest
steps:
@ -152,6 +154,7 @@ jobs:
LEGO1PROGRESS.*
upload:
name: 'Upload artifacts'
needs: [build, compare]
runs-on: ubuntu-latest
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' && github.repository == 'isledecomp/isle' }}

View File

@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 3.13 FATAL_ERROR)
project(isle CXX)
math(EXPR bits "8 * ${CMAKE_SIZEOF_VOID_P}")
message(STATUS "Building ${bits}-bit Lego Island")
message(STATUS "Building ${bits}-bit LEGO Island")
if (NOT bits EQUAL 32)
message(WARNING "Only 32-bit executables are supported")
endif()