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 be75ae0 commit 40f7b87Copy full SHA for 40f7b87
win_build.bat
@@ -6,6 +6,21 @@ REM clone nix source from https://github.com/G-Node/nix
6
SET NIX_ROOT=c:\work\nix
7
SET NIX_MX_ROOT=c:\work\nix-mx
8
9
+IF NOT EXIST %NIX_DEP% (
10
+ ECHO Please provide valid nix dependencies.
11
+ EXIT /b
12
+)
13
+
14
+IF NOT EXIST %NIX_ROOT% (
15
+ ECHO Please provide valid nix root directory.
16
17
18
19
+IF NOT EXIST %NIX_MX_ROOT% (
20
+ ECHO Please provide valid nix-mx root directory.
21
22
23
24
ECHO Use only build types "Release" or "Debug"
25
IF "%1" == "Debug" (SET BUILD_TYPE=Debug)
26
IF "%BUILD_TYPE%" == "" (SET BUILD_TYPE=Release)
0 commit comments