added packed rebuilds to the project (starting work on a static

unpacker)
master
_xeroxz 3 years ago
parent ed347e04f8
commit 046ad3195d

@ -9,7 +9,11 @@ int main()
__cpuid((int*)&cpuid_info, 1); __cpuid((int*)&cpuid_info, 1);
if (cpuid_info.cpuid_feature_information_ecx.avx_support) if (cpuid_info.cpuid_feature_information_ecx.avx_support)
{
MessageBoxA(NULL, "CPU Supports AVX", "INFO", NULL);
return 1; return 1;
}
MessageBoxA(NULL, "CPU Does Not Supports AVX", "INFO", NULL);
return 0; return 0;
} }

@ -139,7 +139,7 @@
<ExceptionHandling>false</ExceptionHandling> <ExceptionHandling>false</ExceptionHandling>
<BufferSecurityCheck>false</BufferSecurityCheck> <BufferSecurityCheck>false</BufferSecurityCheck>
<ControlFlowGuard>false</ControlFlowGuard> <ControlFlowGuard>false</ControlFlowGuard>
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary> <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
</ClCompile> </ClCompile>
<Link> <Link>
<SubSystem>Console</SubSystem> <SubSystem>Console</SubSystem>

Loading…
Cancel
Save