-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathToolchain-mingw64.cmake
More file actions
26 lines (19 loc) · 929 Bytes
/
Toolchain-mingw64.cmake
File metadata and controls
26 lines (19 loc) · 929 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# the name of the target operating system
SET(CMAKE_SYSTEM_NAME Windows)
SET(CMAKE_WIN32_EXECUTABLE ON)
# which compilers to use for C and C++
SET(CMAKE_C_COMPILER x86_64-w64-mingw32-gcc)
SET(CMAKE_CXX_COMPILER x86_64-w64-mingw32-g++)
SET(CMAKE_RC_COMPILER x86_64-w64-mingw32-windres)
# here is the target environment located
SET(CMAKE_FIND_ROOT_PATH
/usr/x86_64-w64-mingw32
)
# adjust the default behaviour of the FIND_XXX() commands:
# search headers and libraries in the target environment, search
# programs in the host environment
set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER)
set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY)
set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY)
# g++ compilation cmd line
# x86_64-w64-mingw32-g++ src/* -Iinclude -I/usr/x86_64-w64-mingw32/includes -L/usr/x86_64-w64-mingw32/lib -lSDL2 -lSDL2_ttf -lSDL2_image -lSDL2main -mwindows -lmingw32 -std=c++11 -L/usr/x86_64-w64-mingw32/lib/libSDL2main.a