1
1
Fork 0
mirror of https://github.com/oxen-io/lokinet synced 2023-12-14 06:53:00 +01:00
lokinet/contrib/cross/mingw32.cmake

16 lines
418 B
CMake
Raw Normal View History

set(CMAKE_SYSTEM_NAME Windows)
set(TOOLCHAIN_PREFIX i686-w64-mingw32)
2019-08-13 02:06:08 +02:00
set(TOOLCHAIN_SUFFIX "")
set(WOW64_CROSS_COMPILE ON)
2019-08-13 02:06:08 +02:00
set(TOOLCHAIN_PATHS
/usr/${TOOLCHAIN_PREFIX}
/usr/local/opt/mingw-w64/toolchain-i686
/usr/local/opt/mingw-w64/toolchain-i686/i686-w64-mingw32
/opt/mingw32
/home/$ENV{USER}/mingw32
/home/$ENV{USER}/mingw32/${TOOLCHAIN_PREFIX}
)
2019-08-13 02:06:08 +02:00
include("${CMAKE_CURRENT_LIST_DIR}/mingw_core.cmake")