Make Unicorn buildable with MinGW (#1364)
* [WIN32] Allow to build also with MinGW * [WIN32] Fix build for MinGW
This commit is contained in:
@ -850,7 +850,7 @@ set(UNICORN_SRCS_COMMON
|
||||
uc.c
|
||||
)
|
||||
|
||||
if (MSVC)
|
||||
if (WIN32)
|
||||
set(UNICORN_SRCS
|
||||
${UNICORN_SRCS_COMMON}
|
||||
qemu/util/oslib-win32.c
|
||||
@ -918,7 +918,7 @@ target_compile_options(unicorn PRIVATE
|
||||
${UNICORN_COMPILE_OPTIONS}
|
||||
)
|
||||
|
||||
if(MSVC)
|
||||
if(WIN32)
|
||||
if (UNICORN_BUILD_SHARED)
|
||||
target_compile_options(unicorn PRIVATE
|
||||
-DUNICORN_SHARED
|
||||
@ -939,7 +939,7 @@ else()
|
||||
)
|
||||
endif()
|
||||
|
||||
if(MSVC)
|
||||
if(WIN32)
|
||||
set(SAMPLES_LIB
|
||||
unicorn
|
||||
)
|
||||
|
Reference in New Issue
Block a user