We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent daa53a0 commit c80963cCopy full SHA for c80963c
build
@@ -16,6 +16,7 @@ TARGET_OS_CMAKE=${TARGET_OS_AND_ABI%-*} # Example: linux
16
case $TARGET_OS_CMAKE in
17
macos*) TARGET_OS_CMAKE="Darwin";;
18
freebsd*) TARGET_OS_CMAKE="FreeBSD";;
19
+ netbsd*) TARGET_OS_CMAKE="NetBSD";;
20
windows*) TARGET_OS_CMAKE="Windows";;
21
linux*) TARGET_OS_CMAKE="Linux";;
22
native) TARGET_OS_CMAKE="";;
build.bat
@@ -25,6 +25,7 @@ set TARGET_OS_CMAKE=
25
FOR /F "tokens=2,3 delims=-" %%i IN ("%TARGET%") DO (
26
IF "%%i"=="macos" set "TARGET_OS_CMAKE=Darwin"
27
IF "%%i"=="freebsd" set "TARGET_OS_CMAKE=FreeBSD"
28
+ IF "%%i"=="netbsd" set "TARGET_OS_CMAKE=NetBSD"
29
IF "%%i"=="windows" set "TARGET_OS_CMAKE=Windows"
30
IF "%%i"=="linux" set "TARGET_OS_CMAKE=Linux"
31
set TARGET_ABI=%%j
0 commit comments