fixed win64 crypto++ linker errors -- added build step for asm files.
This commit is contained in:
parent
9cd8023e92
commit
15de55176f
|
@ -22,12 +22,30 @@ if (WIN32)
|
||||||
list(APPEND cpp_src ${cpp_hdr})
|
list(APPEND cpp_src ${cpp_hdr})
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if (WIN32)
|
file(GLOB cpp_ignore
|
||||||
if (CMAKE_SIZEOF_VOID_P EQUAL 8) # 64-bit
|
${cpp_dir}/simple.cpp
|
||||||
# do not compile crypto++ ASM on 64-bit windows, we just get
|
${cpp_dir}/strciphr.cpp
|
||||||
# bunch of linker errors.
|
${cpp_dir}/polynomi.cpp
|
||||||
set (CMAKE_CXX_FLAGS "/DCRYPTOPP_DISABLE_ASM /EHsc")
|
${cpp_dir}/eprecomp.cpp
|
||||||
endif()
|
${cpp_dir}/eccrypto.cpp
|
||||||
|
${cpp_dir}/algebra.cpp)
|
||||||
|
list(REMOVE_ITEM cpp_src ${cpp_ignore})
|
||||||
|
|
||||||
|
# 64-bit windows - compile asm file.
|
||||||
|
if(CMAKE_CL_64)
|
||||||
|
list(APPEND cpp_src ${cpp_dir}/x64dll.asm ${cpp_dir}/x64masm.asm)
|
||||||
|
|
||||||
|
add_custom_command(OUTPUT $(IntDir)x64dll.obj
|
||||||
|
COMMAND ml64.exe /c /nologo /Fo$(IntDir)x64dll.obj /Zi
|
||||||
|
"${CMAKE_CURRENT_SOURCE_DIR}/${cpp_dir}/x64dll.asm"
|
||||||
|
MAIN_DEPENDENCY ${cpp_dir}/x64dll.asm
|
||||||
|
VERBATIM)
|
||||||
|
|
||||||
|
add_custom_command(OUTPUT $(IntDir)x64masm.obj
|
||||||
|
COMMAND ml64.exe /c /nologo /Fo$(IntDir)x64masm.obj /Zi
|
||||||
|
"${CMAKE_CURRENT_SOURCE_DIR}/${cpp_dir}/x64masm.asm"
|
||||||
|
MAIN_DEPENDENCY ${cpp_dir}/x64masm.asm
|
||||||
|
VERBATIM)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if (APPLE)
|
if (APPLE)
|
||||||
|
|
Loading…
Reference in New Issue