-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #31 from KatharaFramework/develop
Netkit Lab Generator v1.4.0
- Loading branch information
Showing
9 changed files
with
5,845 additions
and
5,583 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,25 @@ | ||
all: build-mac-arm build-mac-x64 build-win-x64 build-win-arm64 build-linux-x64 build-linux-arm64 | ||
|
||
build-mac-arm: | ||
build-mac-arm: install-deps | ||
yarn electron-forge make --arch arm64 --platform darwin | ||
|
||
build-mac-x64: | ||
build-mac-x64: install-deps | ||
yarn electron-forge make --arch x64 --platform darwin | ||
|
||
build-win-x64: | ||
build-win-x64: install-deps | ||
yarn electron-forge make --arch x64 --platform win32 | ||
|
||
build-win-arm64: | ||
build-win-arm64: install-deps | ||
yarn electron-forge make --arch arm64 --platform win32 | ||
|
||
build-linux-x64: | ||
build-linux-x64: install-deps | ||
yarn electron-forge make --arch x64 --platform linux | ||
|
||
build-linux-arm64: | ||
yarn electron-forge make --arch arm64 --platform linux | ||
build-linux-arm64: install-deps | ||
yarn electron-forge make --arch arm64 --platform linux | ||
|
||
install-deps: | ||
npm install | ||
|
||
start: install-deps | ||
npm start |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.