-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpremake5.lua
More file actions
99 lines (81 loc) · 1.98 KB
/
premake5.lua
File metadata and controls
99 lines (81 loc) · 1.98 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
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
-- Example project file for a Raven project
workspace "Raven"
startproject "Sandbox"
path_to_raven = "Raven/" -- This needs to be set so to make the include directories point to the correct place
include "Raven" -- This path needs to be changed to fit the path to the Raven subdirectory
project "Sandbox"
location "Sandbox"
kind "ConsoleApp"
-- The language and the C++ dialect are set using these variables to guarantee compatibility with Raven
language (raven_language)
cppdialect (raven_cppdialect)
staticruntime "on"
-- This redefines the output paths but isn't necessary
objdir (raven_objprefix .. raven_outputdir .. "/%{prj.name}")
targetdir (raven_binprefix .. raven_outputdir .. "/%{prj.name}")
files
{
"%{prj.name}/src/**.h",
"%{prj.name}/src/**.cpp"
}
includedirs
{
raven_include_directories,
"%{prj.name}/src"
}
links
{
"Raven"
}
filter "system:windows"
systemversion "latest"
-- This are the recommended configurations
filter "configurations:Debug"
defines "DEBUG"
symbols "on"
runtime "Debug"
filter "configurations:Release"
defines "RELEASE"
optimize "on"
runtime "Release"
filter "configurations:Distribution"
defines "DIST"
optimize "on"
runtime "Release"
-- Editor project for Raven
project "RavenEdit"
location "RavenEdit"
kind "ConsoleApp"
language (raven_language)
cppdialect (raven_cppdialect)
staticruntime "on"
objdir (raven_objprefix .. raven_outputdir .. "/%{prj.name}")
targetdir (raven_binprefix .. raven_outputdir .. "/%{prj.name}")
files
{
"%{prj.name}/src/**.h",
"%{prj.name}/src/**.cpp"
}
includedirs
{
raven_include_directories,
"%{prj.name}/src"
}
links
{
"Raven"
}
filter "system:windows"
systemversion "latest"
filter "configurations:Debug"
defines "DEBUG"
symbols "on"
runtime "Debug"
filter "configurations:Release"
defines "RELEASE"
optimize "on"
runtime "Release"
filter "configurations:Distribution"
defines "DIST"
optimize "on"
runtime "Release"