diff options
author | fireice-uk <fireice-uk@users.noreply.github.com> | 2017-11-19 12:44:57 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-19 12:44:57 +0000 |
commit | 1a91b1dd23a768580856f300191ecd41db84391e (patch) | |
tree | 26e14e83655946316fe0e378554d52962fba98af | |
parent | 27e511a1e92e903414e176161925d87165cbe25f (diff) | |
parent | c85d4d08afe5ddc61768ff2dc5e606e9d427da57 (diff) | |
download | xmr-stak-1a91b1dd23a768580856f300191ecd41db84391e.zip xmr-stak-1a91b1dd23a768580856f300191ecd41db84391e.tar.gz |
Merge pull request #140 from psychocrypt/fix-windowsCompileV140
fix broken windows compile with v140
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 33e97ea..87c0e8a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -446,7 +446,7 @@ add_library(xmr-stak-c ${SRCFILES_C} ) set_property(TARGET xmr-stak-c PROPERTY C_STANDARD 99) -target_link_libraries(xmr-stak-c ${LIBS}) +target_link_libraries(xmr-stak-c ${MHTD} ${LIBS}) # compile generic backend files file(GLOB BACKEND_CPP |