Skip to content

Commit 81b9175

Browse files
committed
fix: remove config target
1 parent f8a064c commit 81b9175

File tree

1 file changed

+2
-15
lines changed

1 file changed

+2
-15
lines changed

lua/overseer/template/uproject/build.lua

+2-15
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ return {
5252
"Android",
5353
},
5454
},
55-
ConfigState = {
55+
Config = {
5656
type = "enum",
5757
describe =
5858
"https://dev.epicgames.com/documentation/en-us/unreal-engine/compiling-game-projects-in-unreal-engine-using-cplusplus",
@@ -65,25 +65,12 @@ return {
6565
"Test",
6666
},
6767
},
68-
ConfigTarget = {
69-
type = "enum",
70-
describe =
71-
"https://dev.epicgames.com/documentation/en-us/unreal-engine/compiling-game-projects-in-unreal-engine-using-cplusplus",
72-
default = "Editor",
73-
choices = {
74-
"Game",
75-
"Editor",
76-
"Client",
77-
"Server",
78-
},
79-
},
8068
},
8169
builder = function(params)
8270
local target_options = {
8371
target.Name,
8472
params.Platform,
85-
params.ConfigState,
86-
params.ConfigTarget,
73+
params.Config,
8774
}
8875

8976
return {

0 commit comments

Comments
 (0)