1
0

Removed unnecessary define

This commit is contained in:
Tiger Wang 2014-01-24 13:53:19 +00:00
parent 98976de071
commit 17c949ea69

View File

@ -1,4 +1,3 @@
cmake_minimum_required (VERSION 2.6)
# Without this, the MSVC variable isn't defined for MSVC builds ( http://www.cmake.org/pipermail/cmake/2011-November/047130.html )
@ -92,12 +91,6 @@ else()
endif()
# Under clang, we need to disable ASM support in CryptoPP:
if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang")
add_definitions(-DCRYPTOPP_DISABLE_ASM)
endif()
# Under Windows, we need Lua as DLL; on *nix we need it linked statically:
if (WIN32)
add_definitions(-DLUA_BUILD_AS_DLL)