aboutsummaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 55439337d..e79e7203d 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -1185,7 +1185,7 @@ bool parse_build_flags(Array<String> args) {
break;
}
- if (str == "dll" || str == "shared") {
+ if (str == "dll" || str == "shared" || str == "dynamic") {
build_context.build_mode = BuildMode_DynamicLibrary;
} else if (str == "obj" || str == "object") {
build_context.build_mode = BuildMode_Object;