-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpremake5.lua
More file actions
106 lines (83 loc) · 1.71 KB
/
premake5.lua
File metadata and controls
106 lines (83 loc) · 1.71 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
100
101
102
103
104
105
106
workspace "TerminalStory Project"
architecture "x64"
configurations
{
"Debug",
"Release",
"Dist"
}
outputdir = "%{cfg.buildcfg}-%{cfg.system}-%{cfg.architecture}"
project "TerminalCore"
location "TerminalCore"
kind "SharedLib"
language "C++"
targetdir ("bin/".. outputdir .."/%{prj.name}")
objdir ("bin-int/".. outputdir .."/%{prj.name}")
-- 设置 UTF-8 编码
buildoptions { "/utf-8" }
files
{
"%{prj.name}/src/**.h",
"%{prj.name}/src/**.cpp",
"%{prj.name}/src/**.hpp"
}
filter "system:windows"
cppdialect "C++17"
staticruntime "On"
systemversion "latest"
defines
{
"TC_PLATFORM_WINDOWS",
"TC_BUILD_DLL",
}
postbuildcommands
{
"xcopy /Y /I \"$(OutDir)TerminalCore.dll\" \"$(SolutionDir)bin\\%{outputdir}\\TerminalStory Project\\\" > nul"
}
filter "configurations:Debug"
defines "TS_DEBUG"
symbols "On"
filter "configurations:Release"
defines "TS_RELEASE"
optimize "On"
filter "configurations:Dist"
defines "TS_DIST"
optimize "On"
project "TerminalStory Project"
location "TerminalStory Project"
kind "ConsoleApp"
language "C++"
targetdir ("bin/".. outputdir .."/%{prj.name}")
objdir ("bin-int/".. outputdir .."/%{prj.name}")
-- 设置 UTF-8 编码
buildoptions { "/utf-8" }
files
{
"%{prj.name}/src/**.h",
"%{prj.name}/src/**.cpp",
}
includedirs
{
"TerminalCore/src"
}
links
{
"TerminalCore"
}
filter "system:windows"
cppdialect "C++17"
staticruntime "On"
systemversion "latest"
defines
{
"TC_PLATFORM_WINDOWS",
}
filter "configurations:Debug"
defines "TS_DEBUG"
symbols "On"
filter "configurations:Release"
defines "TS_RELEASE"
optimize "On"
filter "configurations:Dist"
defines "TS_DIST"
optimize "On"