diff options
| author | SmallJoker <mk939@ymail.com> | 2015-05-12 20:38:56 +0200 |
|---|---|---|
| committer | est31 <MTest31@outlook.com> | 2015-05-12 21:07:46 +0200 |
| commit | ecc514f11b77690bc1d2d782c8f00a9b045b4f4f (patch) | |
| tree | 9caabc942a43c80bbcd621d0300415c1a42df7bd /src/gmp | |
| parent | 75622c30beb390b7ed578010a00390aa971b3951 (diff) | |
| download | dragonfireclient-ecc514f11b77690bc1d2d782c8f00a9b045b4f4f.tar.xz | |
Build and link gmp correctly on MSVC
Also optimize json's library
Diffstat (limited to 'src/gmp')
| -rw-r--r-- | src/gmp/CMakeLists.txt | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/gmp/CMakeLists.txt b/src/gmp/CMakeLists.txt index b8a56543f..96ae8191d 100644 --- a/src/gmp/CMakeLists.txt +++ b/src/gmp/CMakeLists.txt @@ -1,4 +1,7 @@ -add_library(gmp mini-gmp.c) +if(MSVC) + set(CMAKE_C_FLAGS_RELEASE "/MT /O2 /Ob2 /D NDEBUG") +endif() +add_library(gmp mini-gmp.c) target_link_libraries(gmp) |
