diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2015-06-10 04:57:00 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2015-06-10 04:57:00 +0300 |
commit | d00ce7929e000e3731e853d0c38cfd217b96aee1 (patch) | |
tree | 10f3d11d446a8d1ba2002fdcee05fef2c2d8c97a /utils/CMakeLists.txt | |
parent | rename header files (diff) | |
download | aes-tools-d00ce7929e000e3731e853d0c38cfd217b96aee1.tar.gz aes-tools-d00ce7929e000e3731e853d0c38cfd217b96aee1.zip |
utils: fix compilation errors w/ the asm impl
Diffstat (limited to '')
-rw-r--r-- | utils/CMakeLists.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/utils/CMakeLists.txt b/utils/CMakeLists.txt index f6ca7d1..e770857 100644 --- a/utils/CMakeLists.txt +++ b/utils/CMakeLists.txt @@ -1,3 +1,5 @@ +set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} /SAFESEH:NO") + macro(util prefix) add_executable(util_${prefix} ${prefix}.cpp) target_link_libraries(util_${prefix} libaesni) |