소스 검색

Merge pull request #669 from dj0nes/master

Remove non-Windows includes from Makefile
pull/672/head
Ray 7 년 전
committed by GitHub
부모
커밋
1dba2788bb
No known key found for this signature in database 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)

불러오는 중...
취소
저장