Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix185 #188

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,6 @@ log.txt
*.exe
*.dll
*.pyc

deps/glfw/src/glfw3Config.cmake
deps/glfw/src/glfw3ConfigVersion.cmake
deps/glfw/src/glfw_config.h
14 changes: 12 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,20 @@ the installation:
#### Windows

Download and install [CMake](http://www.cmake.org/cmake/resources/software.html)
and [MinGW](http://www.mingw.org/). Add `C:\MinGW\bin` to your `PATH`.
and [MinGW](http://www.mingw.org/). Add `C:\MinGW\bin` to your `PATH`. This is
required to run craft, not just to build it.

Download and install [cURL](http://curl.haxx.se/download.html) so that
CURL/lib and CURL/include are in your Program Files directory.
CURL/lib and CURL/include are in your Program Files directory. Make sure
libcurl.dll is in CURL/lib (not true for all binary distributions of curl for
windows), and CURL/lib is in your path.

Because there is no standard binary distribution of curl, it may be easiest to
build it yourself, especially if you run into odd incompatibilities or link
errors during your build.

Unpack the source archive or get it via git (use the latest released tag)
and read doc/Install.md (and GIT-INFO if building from git). The instructions may require slight modifications.

Use the following commands in place of the ones described in the next section.

Expand Down