이 웹사이트는 자바스크립트 활성화가 필요합니다.
홈
탐색
도움말
로그인
Archivist
/
raylib-src
의 미러
https://github.com/raysan5/raylib
보기
1
좋아요
0
포크
0
코드
이슈
0
릴리즈
24
위키
활동
소스 검색
Move utils.cmake to separate cmake/ directory
pull/546/head
Ahmad Fatoum
6 년 전
부모
a752092055
커밋
20ddc6a2bb
No known key found for this signature in database
GPG 키 ID:
C3EAC3DE9321D59B
10개의 변경된 파일
과
9개의 추가작업
그리고
9개의 파일을 삭제
분할 보기
Diff Options
Show Stats
Download Patch File
Download Diff File
+0
-0
cmake/utils.cmake
+1
-1
examples/CMakeLists.txt
+1
-1
games/CMakeLists.txt
+1
-1
games/drturtle/CMakeLists.txt
+1
-1
games/just_do/CMakeLists.txt
+1
-1
games/koala_seasons/CMakeLists.txt
+1
-1
games/light_my_ritual/CMakeLists.txt
+1
-1
games/skully_escape/CMakeLists.txt
+1
-1
games/wave_collector/CMakeLists.txt
+1
-1
src/CMakeLists.txt
utils.cmake → cmake/utils.cmake
파일 보기
+ 1
- 1
examples/CMakeLists.txt
파일 보기
@ -1,7 +1,7 @@
#
S
e
t
u
p
t
h
e
p
r
o
j
e
c
t
a
n
d
s
e
t
t
i
n
g
s
project
(
examples
)
include
(
"../utils.cmake"
)
include
(
"../
cmake/
utils.cmake"
)
#
M
a
k
e
s
u
r
e
r
a
y
l
i
b
h
a
s
b
e
e
n
b
u
i
l
t
#
T
O
D
O
`
b
u
i
l
d
`
d
i
r
e
c
t
o
r
y
s
h
o
u
l
d
m
a
y
b
e
b
e
s
o
m
e
t
h
i
n
g
e
l
s
e
.
.
.
+ 1
- 1
games/CMakeLists.txt
파일 보기
@ -1,7 +1,7 @@
#
S
e
t
u
p
t
h
e
p
r
o
j
e
c
t
a
n
d
s
e
t
t
i
n
g
s
project
(
games
)
include
(
"../utils.cmake"
)
include
(
"../
cmake/
utils.cmake"
)
#
M
a
k
e
s
u
r
e
r
a
y
l
i
b
h
a
s
b
e
e
n
b
u
i
l
t
#
T
O
D
O
`
b
u
i
l
d
`
d
i
r
e
c
t
o
r
y
s
h
o
u
l
d
m
a
y
b
e
b
e
s
o
m
e
t
h
i
n
g
e
l
s
e
.
.
.
+ 1
- 1
games/drturtle/CMakeLists.txt
파일 보기
@ -1,7 +1,7 @@
#
S
e
t
u
p
t
h
e
p
r
o
j
e
c
t
a
n
d
s
e
t
t
i
n
g
s
project
(
drturtle
)
include
(
"../../utils.cmake"
)
include
(
"../../
cmake/
utils.cmake"
)
#
M
a
k
e
s
u
r
e
r
a
y
l
i
b
h
a
s
b
e
e
n
b
u
i
l
t
+ 1
- 1
games/just_do/CMakeLists.txt
파일 보기
@ -1,7 +1,7 @@
#
S
e
t
u
p
t
h
e
p
r
o
j
e
c
t
a
n
d
s
e
t
t
i
n
g
s
project
(
just_do
)
include
(
"../../utils.cmake"
)
include
(
"../../
cmake/
utils.cmake"
)
#
M
a
k
e
s
u
r
e
r
a
y
l
i
b
h
a
s
b
e
e
n
b
u
i
l
t
+ 1
- 1
games/koala_seasons/CMakeLists.txt
파일 보기
@ -1,7 +1,7 @@
#
S
e
t
u
p
t
h
e
p
r
o
j
e
c
t
a
n
d
s
e
t
t
i
n
g
s
project
(
koala_seasons
)
include
(
"../../utils.cmake"
)
include
(
"../../
cmake/
utils.cmake"
)
#
M
a
k
e
s
u
r
e
r
a
y
l
i
b
h
a
s
b
e
e
n
b
u
i
l
t
+ 1
- 1
games/light_my_ritual/CMakeLists.txt
파일 보기
@ -1,7 +1,7 @@
#
S
e
t
u
p
t
h
e
p
r
o
j
e
c
t
a
n
d
s
e
t
t
i
n
g
s
project
(
light_my_ritual
)
include
(
"../../utils.cmake"
)
include
(
"../../
cmake/
utils.cmake"
)
#
M
a
k
e
s
u
r
e
r
a
y
l
i
b
h
a
s
b
e
e
n
b
u
i
l
t
+ 1
- 1
games/skully_escape/CMakeLists.txt
파일 보기
@ -1,7 +1,7 @@
#
S
e
t
u
p
t
h
e
p
r
o
j
e
c
t
a
n
d
s
e
t
t
i
n
g
s
project
(
skully_escape
)
include
(
"../../utils.cmake"
)
include
(
"../../
cmake/
utils.cmake"
)
#
M
a
k
e
s
u
r
e
r
a
y
l
i
b
h
a
s
b
e
e
n
b
u
i
l
t
+ 1
- 1
games/wave_collector/CMakeLists.txt
파일 보기
@ -1,7 +1,7 @@
#
S
e
t
u
p
t
h
e
p
r
o
j
e
c
t
a
n
d
s
e
t
t
i
n
g
s
project
(
wave_collector
)
include
(
"../../utils.cmake"
)
include
(
"../../
cmake/
utils.cmake"
)
#
M
a
k
e
s
u
r
e
r
a
y
l
i
b
h
a
s
b
e
e
n
b
u
i
l
t
+ 1
- 1
src/CMakeLists.txt
파일 보기
@ -39,7 +39,7 @@ if(NOT glfw3_FOUND)
list
(
APPEND
raylib_sources
$<
TARGET_OBJECTS:glfw_objlib
>
)
endif
(
)
include
(
"../utils.cmake"
)
include
(
"../
cmake/
utils.cmake"
)
if
(
USE_AUDIO
)
file
(
GLOB
stb_vorbis
external/stb_vorbis.c
)
쓰기
미리보기
불러오는 중...
취소
저장