diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2016-10-17 10:42:02 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2016-10-17 10:42:02 +0300 |
commit | b42c52475d6e86f6ae0ed01f502bd0b611974578 (patch) | |
tree | 30f4777c39f7d07aed6a85209a03bc8af44a415d /utils/CMakeLists.txt | |
parent | fix compiler warnings (diff) | |
download | aes-tools-b42c52475d6e86f6ae0ed01f502bd0b611974578.tar.gz aes-tools-b42c52475d6e86f6ae0ed01f502bd0b611974578.zip |
utils: code dedupe
Diffstat (limited to '')
-rw-r--r-- | utils/CMakeLists.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/utils/CMakeLists.txt b/utils/CMakeLists.txt index 5db82b3..e13d7ce 100644 --- a/utils/CMakeLists.txt +++ b/utils/CMakeLists.txt @@ -1,3 +1,7 @@ +if(MSVC) + add_definitions(/DNOMINMAX) +endif() + find_package(Boost REQUIRED COMPONENTS filesystem program_options system) add_executable(util_encrypt_block encrypt_block.cpp block_cmd_parser.hpp block_dumper.hpp block_input.hpp data_parsers.hpp) |