소스 검색

Add note about glfw3 and openAL

pull/470/head
Michael Vetter 7 년 전
부모
커밋
883ed20e7c
2개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. +3
    -0
      project/Builder/README.md
  2. +1
    -0
      project/Builder/meson.build

+ 3
- 0
project/Builder/README.md 파일 보기

@ -21,3 +21,6 @@ In the provided file we assume that the build file is located at the root folder
Check out the `examples` directory for a simple example on how to use this template. Check out the `examples` directory for a simple example on how to use this template.
You can also look at [raymario](https://github.com/jubalh/raymario) for a slightly more complex example which also installs resource files. You can also look at [raymario](https://github.com/jubalh/raymario) for a slightly more complex example which also installs resource files.
# Notice
The files provided link against glfw3 and openAL because the latest stable version of raylib is version 1.8, which still needs this. For later versions these two dependencies are not necessary anymore.

+ 1
- 0
project/Builder/meson.build 파일 보기

@ -9,6 +9,7 @@ project('projectname', 'c', version: '1.0',
cc = meson.get_compiler('c') cc = meson.get_compiler('c')
# Find dependencies # Find dependencies
# glfw3 and openal are not needed for raylib > 1.8.0
glfw_dep = dependency('glfw3') glfw_dep = dependency('glfw3')
gl_dep = dependency('gl') gl_dep = dependency('gl')
openal_dep = dependency('openal') openal_dep = dependency('openal')

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