|
|
@@ -11,5 +11,11 @@ if(MSVC)
|
|
|
set_target_properties(say PROPERTIES ENABLE_EXPORTS ON)
|
|
|
add_library(autoexport_for_exec SHARED hello2.c)
|
|
|
target_link_libraries(autoexport_for_exec say)
|
|
|
+ if(NOT MSVC_VERSION VERSION_LESS 1600)
|
|
|
+ enable_language(ASM_MASM)
|
|
|
+ target_sources(autoexport PRIVATE nop.asm)
|
|
|
+ set_property(SOURCE nop.asm PROPERTY COMPILE_FLAGS /safeseh)
|
|
|
+ target_compile_definitions(say PRIVATE HAS_JUSTNOP)
|
|
|
+ endif()
|
|
|
endif()
|
|
|
target_link_libraries(say autoexport autoexport2)
|