aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorFelix Queißner <felix@ib-queissner.de>2020-06-11 21:22:14 +0200
committerGitHub <noreply@github.com>2020-06-11 21:22:14 +0200
commit6e4d663cdaec2496cf9d3345096d556bbd0b811b (patch)
treee4eb47f062e12573a7730f3b17d2e95d4a013c15 /README.md
parent04c24245d5779e1d4be4b28d0e208297f2889066 (diff)
parente6d08bad34c4408436599477c3ba79aacc6fad0c (diff)
downloadkristall-6e4d663cdaec2496cf9d3345096d556bbd0b811b.tar.gz
Merge pull request #6 from alexnask/master
Windows (MSVC) build fixes
Diffstat (limited to 'README.md')
-rw-r--r--README.md12
1 files changed, 11 insertions, 1 deletions
diff --git a/README.md b/README.md
index e033db3..e36568d 100644
--- a/README.md
+++ b/README.md
@@ -90,7 +90,17 @@ make
#### Windows
-Just use QtCreator to build `./src/kristall.pro`. Default settings should be fine.
+Compile OpenSSL with the following steps:
+- Install [Perl](https://www.perl.org/get.html) (either ActiveState or Strawberry)
+- Install [NASM](https://www.nasm.us/)
+- Add both to your PATH
+- Clone [OpenSSL](https://github.com/openssl/openssl)
+- Open a Visual Studio Developer Command Prompt (or a command prompt that has ran vcvarsall.bat). You will need Administrator privileges for the install step
+- In the OpenSSL root directory, run `perl Configure VC-WIN32` if compiling for 32 bit, `perl Configure VC-WIN64A` for 64 bit
+- Run `nmake`
+- Run `nmake install` to install OpenSSL in `C:\Program Files\OpenSSL`
+
+Use QtCreator to build `./src/kristall.pro` with default settings.
#### MacOS X