summaryrefslogtreecommitdiff
path: root/platform/windows/SCsub
diff options
context:
space:
mode:
authormarynate <mary.w.nate@gmail.com>2014-10-08 10:59:35 +0800
committermarynate <mary.w.nate@gmail.com>2014-10-08 11:00:59 +0800
commit26d5dac43d084f9d64646885c647ff5f1025a208 (patch)
treebbcf8bcad0931a4b7deef403c6fb4db69dd7ab22 /platform/windows/SCsub
parent3cf6a6fa8cdbd69d2e36addb112ea91fe56577c4 (diff)
Fix windows build issue by moving libraries from LIBS to LINKFLAGS; Remove redundant .exe surfix on windows
Diffstat (limited to 'platform/windows/SCsub')
-rw-r--r--platform/windows/SCsub2
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/windows/SCsub b/platform/windows/SCsub
index 7bdf9b2173..08a775e689 100644
--- a/platform/windows/SCsub
+++ b/platform/windows/SCsub
@@ -10,4 +10,4 @@ common_win=[
"stream_peer_winsock.cpp",
]
-env.Program('#bin/godot',['godot_win.cpp']+common_win,PROGSUFFIX=env["PROGSUFFIX"]+".exe")
+env.Program('#bin/godot',['godot_win.cpp']+common_win,PROGSUFFIX=env["PROGSUFFIX"])