Skip to content

Commit 1ec48e1

Browse files
committed
Siskin: Correct ARM64 platform name
1 parent a6b9717 commit 1ec48e1

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

tree/rebol/Siskin/siskin-msvc.reb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -290,8 +290,8 @@ make-project: func[
290290
PROJECT-GUID: make-guid/from name
291291
PROJECT-NAME: name
292292
PROJECT-TYPE-GUID: any [id make-guid/from "Siskin Visual Studio Project"]
293-
PLATFORM: any [select [x64 "x64" arm64 "ARM"] spec/arch "Win32"]
294-
PLATFORM-X: any [select [x64 "x64" arm64 "ARM"] spec/arch "x86"]
293+
PLATFORM: any [select [x64 "x64" arm64 "ARM64"] spec/arch "Win32"]
294+
PLATFORM-X: any [select [x64 "x64" arm64 "ARM64"] spec/arch "x86"]
295295
ARCH: either all [spec/arch = 'arm64 system/build/arch <> 'arm64][
296296
"x64_arm64"
297297
][ PLATFORM-X ]
@@ -406,7 +406,7 @@ make-project: func[
406406
new-line/all filters true
407407
;probe sort filters
408408

409-
vcxproj.filters: {<?xml version="1.0" encoding="utf-8"?>
409+
vcxproj.filters: copy {<?xml version="1.0" encoding="utf-8"?>
410410
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
411411
<ItemGroup>}
412412

tree/rebol/Siskin/siskin.reb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Rebol [
22
Title: "Siskin Builder - core"
33
Type: module
44
Name: siskin
5-
Version: 0.18.5
5+
Version: 0.18.6
66
Author: "Oldes"
77

88
exports: [
@@ -23,7 +23,7 @@ Rebol [
2323
banner: next rejoin [{
2424
^[[0;33m═╗
2525
^[[0;33m ║^[[1;31m .-.
26-
^[[0;33m ║^[[1;31m /'v'\ ^[[0;33mSISKIN-Framework Builder 0.18.5 Rebol } rebol/version {
26+
^[[0;33m ║^[[1;31m /'v'\ ^[[0;33mSISKIN-Framework Builder 0.18.6 Rebol } rebol/version {
2727
^[[0;33m ║^[[1;31m (/^[[0;31muOu^[[1;31m\) ^[[0;33mhttps://github.com/Siskin-framework/Builder/
2828
^[[0;33m ╚════^[[1;31m"^[[0;33m═^[[1;31m"^[[0;33m═══════════════════════════════════════════════════════════════════════^[[m}]
2929

0 commit comments

Comments
 (0)