-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpremake5.lua
81 lines (64 loc) · 1.42 KB
/
premake5.lua
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
workspace "ModernDialogs"
configurations { "Debug32", "Release32", "Debug64", "Release64" }
startproject "Example"
flags
{
"MultiProcessorCompile"
}
filter "configurations:*32"
architecture "x86"
filter "configurations:*64"
architecture "x86_64"
outputdir = "%{cfg.buildcfg}-%{cfg.system}-%{cfg.architecture}"
project "ModernDialogs"
location "ModernDialogs"
kind "StaticLib"
language "C++"
staticruntime "off"
cppdialect "C++17"
systemversion "latest"
warnings "Extra"
targetdir ("bin/" .. outputdir .. "/%{prj.group}/%{prj.name}")
objdir ("bin-int/" .. outputdir .. "/%{prj.group}/%{prj.name}")
--Add all source and header files
files
{
"ModernDialogs/**.h",
"ModernDialogs/**.cpp"
}
filter "configurations:Debug*"
runtime "Debug"
symbols "On"
filter "configurations:Release*"
runtime "Release"
optimize "On"
project "Example"
location "Example"
kind "ConsoleApp"
language "C++"
staticruntime "off"
cppdialect "C++17"
systemversion "latest"
warnings "Extra"
targetdir ("bin/" .. outputdir .. "/%{prj.group}/%{prj.name}")
objdir ("bin-int/" .. outputdir .. "/%{prj.group}/%{prj.name}")
--Add all source and header files
files
{
"Example/**.h",
"Example/**.cpp"
}
includedirs
{
"ModernDialogs/"
}
links
{
"ModernDialogs"
}
filter "configurations:Debug*"
runtime "Debug"
symbols "On"
filter "configurations:Release*"
runtime "Release"
optimize "On"