소스 검색

Additional path check

pull/333/head
raysan5 8 년 전
부모
커밋
92729662f4
1개의 변경된 파일13개의 추가작업 그리고 3개의 파일을 삭제
  1. +13
    -3
      examples/Makefile

+ 13
- 3
examples/Makefile 파일 보기

@ -30,11 +30,21 @@
# WARNING: To compile to HTML5, code must be redesigned to use emscripten.h and emscripten_set_main_loop()
PLATFORM ?= PLATFORM_DESKTOP
# define raylib directory for include and library
RAYLIB_PATH ?= C:\raylib\raylib
# define default raylib path for include and library search
ifeq ($(PLATFORM),PLATFORM_DESKTOP)
ifeq ($(PLATFORM_OS),WINDOWS)
RAYLIB_PATH ?= C:\raylib\raylib
endif
ifeq ($(PLATFORM_OS),LINUX)
RAYLIB_PATH ?= ..
endif
ifeq ($(PLATFORM_OS),OSX)
RAYLIB_PATH ?= ..
endif
endif
ifeq ($(PLATFORM),PLATFORM_RPI)
RAYLIB_PATH = /home/pi/raylib
RAYLIB_PATH ?= /home/pi/raylib
endif
# define NO to use OpenAL Soft as static library (shared by default)

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