-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscene_editor.lua
More file actions
86 lines (68 loc) · 1.59 KB
/
scene_editor.lua
File metadata and controls
86 lines (68 loc) · 1.59 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
project "lucid_scene_editor"
kind "ConsoleApp"
language "C++"
targetdir "bin/%{cfg.buildcfg}"
cppdialect "C++17"
includedirs { "." }
includedirs {
"engine",
"engine/platform/include",
"engine/devices/include",
"engine/common/include",
"engine/misc/include",
"engine/scene/include",
"engine/resources/include",
"engine/schemas/include",
"libs/stb"
}
includedirs {
"tools/scene_editor/include",
"libs/glm",
"libs/SDL2/include",
"libs/df_serialize",
"libs/rapidjson",
"libs/sole/include"
}
libdirs {
"engine/bin/Debug",
"libs/SDL2/lib/x64",
"libs/assimp/lib/x64"
}
links {
"SDL2",
"SDL2main",
"assimp",
"lucid_engine"
}
files {
"tools/scene_editor/src/*.cpp"
}
filter "platforms:Win64"
architecture "x86_64"
filter "platforms:Win32"
architecture "x86"
filter "platforms:Linux"
architecture "x86_64"
filter "system:linux"
links {
"GL",
}
filter "system:windows"
links {
"opengl32",
}
filter "configurations:Debug"
defines { "DEBUG" }
symbols "On"
optimize "Off"
filter "configurations:Release"
defines { "NDEBUG" }
symbols "Off"
optimize "On"
filter {}
-- @TODO Filter
defines { "DEVELOPMENT=1" }
-- TODO include only in development
includedirs {
"engine/imgui/include"
}