mirror of
https://github.com/Perlmint/glew-cmake.git
synced 2024-11-11 09:33:49 +00:00
For SYSTEM linux-mingw32 and linux-mingw64 default GLEW_DEST more appropriately
This commit is contained in:
parent
d7693eea09
commit
247baa9e20
@ -1,17 +1,19 @@
|
|||||||
# For cross-compiling from Linux to Windows 32-bit using mingw32
|
# For cross-compiling from Linux to Windows 32-bit using mingw32
|
||||||
# http://mingw-w64.org/
|
# http://mingw-w64.org/
|
||||||
#
|
#
|
||||||
|
# Ubuntu/Debian:
|
||||||
# $ sudo apt install mingw-w64
|
# $ sudo apt install mingw-w64
|
||||||
# $ make SYSTEM=linux-mingw32
|
# $ make SYSTEM=linux-mingw32
|
||||||
|
|
||||||
NAME := glew32
|
NAME := glew32
|
||||||
HOST := i686-w64-mingw32
|
HOST := i686-w64-mingw32
|
||||||
|
GLEW_DEST ?= /usr/local/$(HOST)
|
||||||
CC := $(HOST)-gcc
|
CC := $(HOST)-gcc
|
||||||
LD := $(HOST)-ld
|
LD := $(HOST)-ld
|
||||||
LN :=
|
LN :=
|
||||||
STRIP :=
|
STRIP :=
|
||||||
LDFLAGS.GL = -L/usr/$(HOST)/lib -lopengl32 -lgdi32 -luser32 -lkernel32
|
LDFLAGS.GL = -L/usr/$(HOST)/lib -lopengl32 -lgdi32 -luser32 -lkernel32
|
||||||
CFLAGS.EXTRA += -fno-builtin -fno-stack-protector
|
CFLAGS.EXTRA += -fno-builtin -fno-stack-protector -Wno-cast-function-type
|
||||||
WARN = -Wall -W
|
WARN = -Wall -W
|
||||||
POPT = -O2
|
POPT = -O2
|
||||||
BIN.SUFFIX = .exe
|
BIN.SUFFIX = .exe
|
||||||
|
@ -1,17 +1,19 @@
|
|||||||
# For cross-compiling from Linux to Windows 64-bit using mingw64
|
# For cross-compiling from Linux to Windows 64-bit using mingw64
|
||||||
# http://mingw-w64.org/
|
# http://mingw-w64.org/
|
||||||
#
|
#
|
||||||
|
# Ubuntu/Debian:
|
||||||
# $ sudo apt install mingw-w64
|
# $ sudo apt install mingw-w64
|
||||||
# $ make SYSTEM=linux-mingw64
|
# $ make SYSTEM=linux-mingw64
|
||||||
|
|
||||||
NAME := glew32
|
NAME := glew32
|
||||||
HOST := x86_64-w64-mingw32
|
HOST := x86_64-w64-mingw32
|
||||||
|
GLEW_DEST ?= /usr/local/$(HOST)
|
||||||
CC := $(HOST)-gcc
|
CC := $(HOST)-gcc
|
||||||
LD := $(HOST)-ld
|
LD := $(HOST)-ld
|
||||||
LN :=
|
LN :=
|
||||||
STRIP :=
|
STRIP :=
|
||||||
LDFLAGS.GL = -L/usr/$(HOST)/lib -lopengl32 -lgdi32 -luser32 -lkernel32
|
LDFLAGS.GL = -L/usr/$(HOST)/lib -lopengl32 -lgdi32 -luser32 -lkernel32
|
||||||
CFLAGS.EXTRA += -fno-builtin -fno-stack-protector
|
CFLAGS.EXTRA += -fno-builtin -fno-stack-protector -Wno-cast-function-type
|
||||||
WARN = -Wall -W
|
WARN = -Wall -W
|
||||||
POPT = -O2
|
POPT = -O2
|
||||||
BIN.SUFFIX = .exe
|
BIN.SUFFIX = .exe
|
||||||
|
Loading…
Reference in New Issue
Block a user