Update build instructions for windows
See original GitHub issueIssue Description
Need to update build instructions to try and remove any hoops people need to jump through, namely implement usage of scoop
. Could also add instruction on setting up dev environment with intellij.
scoop install git
scoop install zulu15
git clone http://github.com/collinsmith/riiablo
cd riiablo
.\gradlew desktop:run --args="--d2 <path_to_d2>"
scoop install idea
.\gradlew idea (generates idea project files correctly)
idea64 (starts idea)
... add zulu15 install dir to intellij jdks ...
open project (should ask to load project gradle scripts and to trust project gradle build scripts)
Issue Analytics
- State:
- Created 2 years ago
- Comments:5 (3 by maintainers)
Top Results From Across the Web
Get the latest Windows update - Microsoft Support
Get the latest Windows update ; Start > ; Settings > ; Windows Update , then select Check for updates. If updates are...
Read more >Build Instructions (Windows) - The Chromium Projects
Build Instructions (Windows). Windows build instructions have been moved! See them here.
Read more >Windows Build Instructions
Windows Build Instructions ... You must build with Visual Studio 2013 Update 4 or Visual Studio 2015 Update 1, no other versions are...
Read more >Update Build Instructions for Windows, perhaps?
Re: Update Build Instructions for Windows, perhaps? ... Hello, The build.txt that is on the repo says you have to use Python 2.7...
Read more >Building Blender/Windows - Blender Developer Wiki
Building Blender on Windows. These are instructions to build Blender for Windows, ... cd C:\blender-git\blender make update make ...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
@micheljung That code path was disabled because it’s in development (
excel.annotation-processor
), so I must have missed that file when committing. I’ve added it to repo if you want to do another pull. That specific file is literally just a container for primary key fields for metadata use in the annotation processor. See 7e7b340Below is for opening the project for IDEA – not building specifically.
8287515b24ef81086941b6a85e6873eb37037c20 added support for generating sources when generating project for idea
.\gradlew idea
will generate an IDEA .ipr project file which can be loaded by IDEA (which then asks to load gradle stuff, which then asks to be trusted). Should loadriiablo.ipr
when opening project so it works correctly. IDEA will throw a warning like below about duplicate content roots which can be ignored – caused by having assets in root folder and shared (seems can be avoided by having assets in android project, but I don’t like that structure and will avoid as long as possible).