about summary refs log tree commit diff stats
path: root/premake5.lua
diff options
context:
space:
mode:
authorCharadon <dev@iotib.net>2022-06-08 02:28:04 -0400
committerCharadon <dev@iotib.net>2022-06-08 02:28:04 -0400
commit17a70c07f8fc65ee6241590a11acbb4988fb06e0 (patch)
tree45ebaae6a5b03344c4b63f4b4517820179d373d9 /premake5.lua
parentfa2a4d7f672e34b360687243ce549187bfce2e12 (diff)
downloadPong-C-17a70c07f8fc65ee6241590a11acbb4988fb06e0.tar.gz
More portability fixes
Diffstat (limited to 'premake5.lua')
-rw-r--r--premake5.lua3
1 files changed, 2 insertions, 1 deletions
diff --git a/premake5.lua b/premake5.lua
index 92d7f50..0c5b4b2 100644
--- a/premake5.lua
+++ b/premake5.lua
@@ -84,7 +84,8 @@ project("Pong")
     kind("WindowedApp")
     language("C")
     files {"src/*.c", "src/*.h", }
-    includedirs {"raylib/src"}
+    includedirs {"/usr/local/include"}
+    libdirs {"/usr/local/lib"}
 
     -- Prefix Option
     newoption {
967e390'>e372341 ^
528f418 ^


e372341 ^










528f418 ^


e372341 ^





















2dd8b8b ^



528f418 ^
e372341 ^





























6a98c8d ^
e372341 ^


6a98c8d ^
e372341 ^



528f418 ^



e372341 ^

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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145