Ver código fonte

Merge pull request #669 from dj0nes/master

Remove non-Windows includes from Makefile
pull/672/head
Ray 6 anos atrás
committed by GitHub
pai
commit
1dba2788bb
Nenhuma chave conhecida encontrada para esta assinatura no banco de dados ID da chave GPG: 4AEE18F83AFDEB23
1 arquivos alterados com 4 adições e 1 exclusões
  1. +4
    -1
      src/Makefile

+ 4
- 1
src/Makefile Ver arquivo

@ -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)

Carregando…
Cancelar
Salvar