Browse Source

Fix typo in Platforms.cmake (#7588)

pull/7595/head
Trihedraf 1 year ago committed by GitHub
parent
commit
fcb22f5376
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      .github/workflows/Windows9x_MinGW.yml
  2. 2
      CMake/Platforms.cmake

2
.github/workflows/Windows9x_MinGW.yml

@ -42,7 +42,7 @@ jobs:
- name: Configure CMake
shell: bash
working-directory: ${{github.workspace}}
run: cmake -S. -Bbuild-windows9x -DCMAKE_BUILD_TYPE=Release -DBUILD_TESTING=OFF -DCPACK=ON -DCMAKE_TOOLCHAIN_FILE=../CMake/platforms/mingw9x.toolchain.cmake -DTARGET_PLATORM=windows9x
run: cmake -S. -Bbuild-windows9x -DCMAKE_BUILD_TYPE=Release -DBUILD_TESTING=OFF -DCPACK=ON -DCMAKE_TOOLCHAIN_FILE=../CMake/platforms/mingw9x.toolchain.cmake -DTARGET_PLATFORM=windows9x
- name: Build
working-directory: ${{github.workspace}}

2
CMake/Platforms.cmake

@ -29,7 +29,7 @@ elseif(TARGET_PLATFORM STREQUAL "lepus")
include(platforms/lepus)
elseif(TARGET_PLATFORM STREQUAL "miyoo_mini")
include(platforms/miyoo_mini)
elseif(TARGET_PLATORM STREQUAL "windows9x")
elseif(TARGET_PLATFORM STREQUAL "windows9x")
include(platforms/windows9x)
elseif(WIN32)
include(platforms/windows)

Loading…
Cancel
Save