From fde2875a558b6402ffd31163d433c74418bae099 Mon Sep 17 00:00:00 2001 From: Rob Swindell <rob@synchro.net> Date: Mon, 16 Nov 2020 23:39:05 -0800 Subject: [PATCH] SyncTERM v1.2 builds as Desktop/GUI app, not a console app Change SubSystem type from Console to Windows to resolve error: unresolved external symbol _main referenced in function ___tmainCRTStartup --- src/syncterm/SyncTERM.vcxproj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/syncterm/SyncTERM.vcxproj b/src/syncterm/SyncTERM.vcxproj index 9306dd03cc..57a9f85803 100644 --- a/src/syncterm/SyncTERM.vcxproj +++ b/src/syncterm/SyncTERM.vcxproj @@ -77,7 +77,7 @@ <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary> </ClCompile> <Link> - <SubSystem>Console</SubSystem> + <SubSystem>Windows</SubSystem> <GenerateDebugInformation>true</GenerateDebugInformation> <AdditionalDependencies>winmm.lib;%(AdditionalDependencies)</AdditionalDependencies> </Link> @@ -95,7 +95,7 @@ <RuntimeLibrary>MultiThreaded</RuntimeLibrary> </ClCompile> <Link> - <SubSystem>Console</SubSystem> + <SubSystem>Windows</SubSystem> <GenerateDebugInformation>true</GenerateDebugInformation> <EnableCOMDATFolding>true</EnableCOMDATFolding> <OptimizeReferences>true</OptimizeReferences> -- GitLab