瀏覽代碼

Merge pull request #669 from dj0nes/master

Remove non-Windows includes from Makefile
pull/672/head
Ray 6 年之前
committed by GitHub
父節點
當前提交
1dba2788bb
沒有發現已知的金鑰在資料庫的簽署中 GPG 金鑰 ID: 4AEE18F83AFDEB23
共有 1 個檔案被更改,包括 4 行新增1 行删除
  1. +4
    -1
      src/Makefile

+ 4
- 1
src/Makefile 查看文件

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

Loading…
取消
儲存