-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathCMakeLists.txt
executable file
·81 lines (78 loc) · 1.65 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
cmake_minimum_required(VERSION 3.21)
project(raylib C)
set(CMAKE_C_STANDARD 11)
include_directories(
external/php-src
external/php-src/main
external/php-src/Zend
external/php-src/TSRM
external/php-src/ext
/Volumes/External/opt/homebrew/Cellar/raylib/4.5.0/include
)
include_directories(. ../../main/ ../../../deps/include)
add_executable(raylib
audiostream.c
audiostream.h
boneinfo.c
boneinfo.h
boundingbox.c
boundingbox.h
camera2d.c
camera2d.h
camera3d.c
camera3d.h
color.c
color.h
font.c
font.h
glyphinfo.c
glyphinfo.h
image.c
image.h
material.c
material.h
materialmap.c
materialmap.h
matrix.c
matrix.h
mesh.c
mesh.h
model.c
model.h
modelanimation.c
modelanimation.h
music.c
music.h
npatchinfo.c
npatchinfo.h
php_raylib.h
ray.c
ray.h
raycollision.c
raycollision.h
raylib.c
rectangle.c
rectangle.h
rendertexture.c
rendertexture.h
shader.c
shader.h
sound.c
sound.h
texture.c
texture.h
transform.c
transform.h
vector2.c
vector2.h
vector3.c
vector3.h
vector4.c
vector4.h
vrdeviceinfo.c
vrdeviceinfo.h
vrstereoconfig.c
vrstereoconfig.h
wave.c
wave.h include/hashmap.h include/hashmap.c
generate/manual/LoadModelAnimations.c)