diff options
author | fireice-uk <fireice-uk@users.noreply.github.com> | 2017-11-19 12:45:16 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-19 12:45:16 +0000 |
commit | 6d6460a58a5765b7524983d2e64a560531b2c975 (patch) | |
tree | 9ee3cb678ec9d0ab9a75f9ab99c32d6f5ef19bfe | |
parent | 1a91b1dd23a768580856f300191ecd41db84391e (diff) | |
parent | 3ce546230ee6d14b678a75e45ce767918ec94e20 (diff) | |
download | xmr-stak-6d6460a58a5765b7524983d2e64a560531b2c975.zip xmr-stak-6d6460a58a5765b7524983d2e64a560531b2c975.tar.gz |
Merge pull request #141 from psychocrypt/fix-windowsCompileDocumentation
fix windows compile documentation
-rw-r--r-- | .appveyor.yml | 1 | ||||
-rw-r--r-- | doc/compile_Linux.md | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/.appveyor.yml b/.appveyor.yml index 1dc313b..7989cb6 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -28,4 +28,5 @@ build_script: test_script: - cd c:\xmr-stak\build\bin\Release - dir + - copy C:\xmr-stak-dep\openssl\bin\* . - xmr-stak.exe --help diff --git a/doc/compile_Linux.md b/doc/compile_Linux.md index cf99121..6b5c819 100644 --- a/doc/compile_Linux.md +++ b/doc/compile_Linux.md @@ -73,5 +73,7 @@ If you want to compile the binary without installing libraries / compiler or jus ``` cmake -DCMAKE_LINK_STATIC=ON -DXMR-STAK_COMPILE=generic . make install + cd bin\Release + copy C:\xmr-stak-dep\openssl\bin\* . ``` Note - cmake caches variables, so if you want to do a dynamic build later you need to specify '-DCMAKE_LINK_STATIC=OFF' |