mirror of
https://github.com/Pecusx/libretro-atari800.git
synced 2026-05-21 21:33:56 +02:00
fix win dirsep
This commit is contained in:
@@ -232,7 +232,15 @@ else ifneq (,$(findstring armv,$(platform)))
|
|||||||
# emscripten
|
# emscripten
|
||||||
else ifeq ($(platform), emscripten)
|
else ifeq ($(platform), emscripten)
|
||||||
TARGET := $(TARGET_NAME)_libretro_emscripten.bc
|
TARGET := $(TARGET_NAME)_libretro_emscripten.bc
|
||||||
|
# cross Windows
|
||||||
|
else ifeq ($(platform), wincross64)
|
||||||
|
TARGET := $(TARGET_NAME)_libretro.dll
|
||||||
|
AR = x86_64-w64-mingw32-ar
|
||||||
|
CC = x86_64-w64-mingw32-gcc
|
||||||
|
CXX = x86_64-w64-mingw32-g++
|
||||||
|
SHARED := -shared -static-libgcc -static-libstdc++ -Wl,-no-undefined -Wl,-version-script=link.T
|
||||||
|
LIBS += -lshlwapi
|
||||||
|
PLATFORM_DEFINES += -DDIR_SEP_BACKSLASH=1
|
||||||
# Windows
|
# Windows
|
||||||
else
|
else
|
||||||
TARGET := $(TARGET_NAME)_libretro.dll
|
TARGET := $(TARGET_NAME)_libretro.dll
|
||||||
@@ -241,8 +249,7 @@ else
|
|||||||
CXX = g++
|
CXX = g++
|
||||||
SHARED := -shared -static-libgcc -static-libstdc++ -Wl,-no-undefined -Wl,-version-script=link.T
|
SHARED := -shared -static-libgcc -static-libstdc++ -Wl,-no-undefined -Wl,-version-script=link.T
|
||||||
LIBS += -lshlwapi
|
LIBS += -lshlwapi
|
||||||
HAVE_WIN32_MSX_MANAGER = 1
|
PLATFORM_DEFINES += -D__WIN32__ -DDIR_SEP_BACKSLASH=1
|
||||||
PLATFORM_DEFINES := -D__WIN32__
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
CORE_DIR := .
|
CORE_DIR := .
|
||||||
|
|||||||
Reference in New Issue
Block a user