forked from raysan5/raylib
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpremake5.lua
More file actions
67 lines (49 loc) · 1.57 KB
/
Copy pathpremake5.lua
File metadata and controls
67 lines (49 loc) · 1.57 KB
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
function platform_defines()
defines{"PLATFORM_DESKTOP"}
filter {"options:graphics=opengl43"}
defines{"GRAPHICS_API_OPENGL_43"}
filter {"options:graphics=opengl33"}
defines{"GRAPHICS_API_OPENGL_33"}
filter {"options:graphics=opengl21"}
defines{"GRAPHICS_API_OPENGL_21"}
filter {"options:graphics=opengl11"}
defines{"GRAPHICS_API_OPENGL_11"}
filter {"options:graphics=openges3"}
defines{"GRAPHICS_API_OPENGL_ES3"}
filter {"options:graphics=openges2"}
defines{"GRAPHICS_API_OPENGL_ES2"}
filter {"system:macosx"}
disablewarnings {"deprecated-declarations"}
filter {"system:linux"}
defines {"_GLFW_X11"}
defines {"_GNU_SOURCE"}
end
project "raylib"
kind "StaticLib"
platform_defines()
language "C"
targetdir ("%{wks.location}/bin/" .. outputdir .. "/%{prj.name}")
objdir ("%{wks.location}/bin-int/" .. outputdir .. "/%{prj.name}")
filter "action:vs*"
defines{"_WINSOCK_DEPRECATED_NO_WARNINGS", "_CRT_SECURE_NO_WARNINGS"}
characterset ("Unicode")
buildoptions { "/Zc:__cplusplus" }
filter{}
files {
"/src/**.h",
"/src/**.c"
}
includedirs {
"/src",
"/src/external/glfw/include"
}
flags { "ShadowedVariables"}
vpaths
{
["Header Files"] = { "/src/**.h"},
["Source Files/*"] = { "/src/**.c"},
}
removefiles {"/src/rcore_*.c"}
filter { "system:macosx", "files:" .. IncludeDir.raylib .. "/src/rglfw.c" }
compileas "Objective-C"
filter {}