From e110a45ebc736e3cdb6283e4f64b9388ca85d4e9 Mon Sep 17 00:00:00 2001 From: Nicola Orlando Date: Wed, 6 Oct 2021 18:34:02 +0200 Subject: [PATCH] Small mingwcc.cmake cleanup --- mingwcc.cmake | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/mingwcc.cmake b/mingwcc.cmake index eadce32..5c26b26 100644 --- a/mingwcc.cmake +++ b/mingwcc.cmake @@ -1,6 +1,5 @@ set(TOOLCHAIN_PREFIX "x86_64-w64-mingw32") -# the name of the target operating system set(CMAKE_SYSTEM_NAME Windows) set(CMAKE_CXX_COMPILER "${TOOLCHAIN_PREFIX}-g++") @@ -12,8 +11,7 @@ set(CMAKE_AR "${TOOLCHAIN_PREFIX}-ar") set(ASSEMBLER "${TOOLCHAIN_PREFIX}-as") -set(CMAKE_FIND_ROOT_PATH /usr/x86_64-w64-mingw32) -#set(CMAKE_SYSROOT "/usr/x86_64-w64-mingw32") +set(CMAKE_FIND_ROOT_PATH /usr/${TOOLCHAIN_PREFIX}) # adjust the default behavior of the find commands: # search headers and libraries in the target environment @@ -23,8 +21,5 @@ set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY) # search programs in the host environment set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER) -set(SDL2_PATH /usr/x86_64-w64-mingw32) - -#include_directories(BEFORE SYSTEM "/usr/x86_64-w64-mingw32/include/SDL2") -#list(APPEND CMAKE_IGNORE_PATH /usr/include/SDL2) -#message("CMAKE_IGNORE_PATH: ${CMAKE_IGNORE_PATH}") \ No newline at end of file +# Add the path to your toolchain version of SDL2 +set(SDL2_PATH /usr/${TOOLCHAIN_PREFIX}) \ No newline at end of file