Explorar el Código

Remove non-Windows includes from Makefile

pull/669/head
Dillon Jones hace 7 años
padre
commit
59bbad9360
Se han modificado 1 ficheros con 4 adiciones y 1 borrados
  1. +4
    -1
      src/Makefile

+ 4
- 1
src/Makefile Ver fichero

@ -339,9 +339,12 @@ endif
# Define include paths for required headers
# NOTE: Several external required libraries (stb and others)
INCLUDE_PATHS = -I. -Iexternal -Iexternal/glfw/include
INCLUDE_PATHS = -I. -Iexternal/glfw/include
ifeq ($(PLATFORM),PLATFORM_DESKTOP)
ifeq ($(PLATFORM_OS),WINDOWS)
INCLUDE_PATHS += -Iexternal
endif
ifeq ($(PLATFORM_OS),BSD)
INCLUDE_PATHS += -I/usr/local/include
LDFLAGS += -L. -Lsrc -L/usr/local/lib -L$(RAYLIB_RELEASE_PATH)

Cargando…
Cancelar
Guardar