CMake/crossplatform/Linux/win32-g++.cmake

22 lines
527 B
CMake
Executable File

#
# Copyright (C) 2018-2019 QuasarApp.
# Distributed under the MIT software license, see the accompanying
# Everyone is permitted to copy and distribute verbatim copies
# of this license document, but changing it is not allowed.
#
if(DEFINED CROSSPLATFORM_BUILD_TOOLCHAIN_WIN_32)
return()
else()
set(CROSSPLATFORM_BUILD_TOOLCHAIN_WIN_32 1)
endif()
# the name of the target operating system
SET(BASE_COMPILLER_NAME w64-mingw32)
SET(PLATFORM_COMPILLER_NAME i686)
include(${CMAKE_CURRENT_LIST_DIR}/utils/win-base.cmake)